Files
fizzy/app/models/access.rb
T
2025-04-09 14:50:58 +02:00

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