mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
This cop checks that comment annotation keywords are written according to guidelines. The offense was automatically corrected.
7 lines
197 B
Ruby
7 lines
197 B
Ruby
class EventUser < ActiveRecord::Base
|
|
# TODO: Do we need these roles?
|
|
ROLES = [%w[Speaker speaker], %w[Submitter submitter], %w[Moderator moderator]]
|
|
|
|
belongs_to :event
|
|
belongs_to :user
|
|
end
|