osem-fcy/app/models/role.rb
2014-07-30 09:43:43 +03:00

10 lines
315 B
Ruby

class Role < ActiveRecord::Base
attr_accessible :name, :description
has_and_belongs_to_many :users
belongs_to :resource, polymorphic: true
scopify
LABELS = ['Participant', 'Attendee', 'Volunteer', 'Speaker', 'Sponsor', 'Press',
'Organizer', 'CfP', 'Info Desk', 'Volunteers Coordinator']
end