mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-15 04:34:03 +00:00
7 lines
216 B
Ruby
7 lines
216 B
Ruby
module Admin
|
|
module VolunteersHelper
|
|
def can_manage_volunteers?(conference)
|
|
current_user.has_role?(:organizer, conference) || current_user.has_role?(:volunteers_coordinator, conference)
|
|
end
|
|
end
|
|
end
|