forked from OpenNeo/impress
22 lines
400 B
Ruby
22 lines
400 B
Ruby
class Campaign < ActiveRecord::Base
|
|
attr_accessible :active, :goal, :progress
|
|
|
|
has_many :donations
|
|
|
|
def progress_percent
|
|
[(progress.to_f / goal) * 100, 100].min
|
|
end
|
|
|
|
def remaining
|
|
goal - progress
|
|
end
|
|
|
|
def complete?
|
|
progress >= goal
|
|
end
|
|
|
|
def self.current
|
|
self.where(active: true).first or
|
|
raise ActiveRecord::RecordNotFound.new("no current campaign")
|
|
end
|
|
end
|