12 lines
274 B
Ruby
12 lines
274 B
Ruby
|
|
module Admin
|
||
|
|
module ConferenceHelper
|
||
|
|
def withdrawn_events?(conference)
|
||
|
|
conference.program.events.where(state: :withdrawn).empty?
|
||
|
|
end
|
||
|
|
|
||
|
|
def withdrawn_events_count(conference)
|
||
|
|
conference.program.events.where(state: :withdrawn).count
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|