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

10 lines
261 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-03-16 22:31:42 +05:30
module Admin
module VolunteersHelper
2017-03-17 18:50:29 +05:30
def can_manage_volunteers?(conference)
current_user.has_cached_role?(:organizer, conference) || current_user.has_cached_role?(:volunteers_coordinator, conference)
2017-03-16 22:31:42 +05:30
end
end
end