mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 11:44:02 +00:00
9 lines
261 B
Ruby
9 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
module VolunteersHelper
|
|
def can_manage_volunteers?(conference)
|
|
current_user.has_cached_role?(:organizer, conference) || current_user.has_cached_role?(:volunteers_coordinator, conference)
|
|
end
|
|
end
|
|
end
|