Adds donation model/table and basic manual management in the admin panel, as well as basic listing of users' own donations.
11 lines
178 B
Ruby
11 lines
178 B
Ruby
class Donation < ApplicationRecord
|
|
# Relations
|
|
belongs_to :user
|
|
|
|
# Validations
|
|
validates_presence_of :amount_sats
|
|
|
|
# Hooks
|
|
# TODO before_create :store_fiat_value
|
|
end
|