mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-01 12:38:30 +08:00
10 lines
292 B
Ruby
10 lines
292 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserAssignment < ApplicationRecord
|
|
belongs_to :assignable, polymorphic: true
|
|
belongs_to :user_role
|
|
belongs_to :user
|
|
belongs_to :assigned_by, class_name: 'User', optional: true
|
|
|
|
enum assigned: { automatically: 0, manually: 1 }, _suffix: true
|
|
end
|