7 lines
160 B
Ruby
7 lines
160 B
Ruby
class Access < ApplicationRecord
|
|
belongs_to :collection
|
|
belongs_to :user
|
|
|
|
enum :involvement, %i[ access_only watching everything ].index_by(&:itself)
|
|
end
|