osem-fcy/app/helpers/admin/volunteers_helper.rb

12 lines
268 B
Ruby
Raw Normal View History

2017-03-16 22:31:42 +05:30
module Admin
module VolunteersHelper
def can_manage_volunteers(conference)
if (current_user.has_role? :organizer, conference) || (current_user.has_role? :volunteers_coordinator, conference)
true
else
false
end
end
end
end