osem-fcy/app/helpers/admin/volunteers_helper.rb
2017-05-26 15:47:01 +03:00

11 lines
268 B
Ruby

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