mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 01:32:36 +02:00
12 lines
254 B
Ruby
12 lines
254 B
Ruby
class Tip < Sequel::Model
|
|
many_to_one :site
|
|
many_to_one :actioning_site, class: :Site
|
|
|
|
def amount_string
|
|
Monetize.parse("#{currency} #{amount.to_f}").format
|
|
end
|
|
|
|
def fee_string
|
|
Monetize.parse("#{currency} #{fee.to_f}").format
|
|
end
|
|
end
|