2018-05-07 16:47:29 -07:00
|
|
|
# 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)
|
2018-03-28 17:31:18 -07:00
|
|
|
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
|