1
0
Fork 0
forked from OpenNeo/impress
impress/app/models/campaign.rb

15 lines
302 B
Ruby
Raw Normal View History

2014-09-11 15:40:37 -07:00
class Campaign < ActiveRecord::Base
attr_accessible :active, :goal, :progress
has_many :donations
def progress_percent
(progress.to_f / goal) * 100
end
def self.current
self.where(active: true).first or
raise ActiveRecord::RecordNotFound.new("no current campaign")
end
end