mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
9 lines
286 B
Ruby
9 lines
286 B
Ruby
class Role < ActiveRecord::Base
|
|
has_and_belongs_to_many :users
|
|
belongs_to :resource, polymorphic: true
|
|
|
|
scopify
|
|
|
|
LABELS = ['Attendee', 'Volunteer', 'Speaker', 'Sponsor', 'Press', 'Keynote Speaker']
|
|
ACTIONABLES = ['Organizer', 'CfP', 'Info Desk', 'Volunteers Coordinator']
|
|
end
|