mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
3746332c30
Fixed cache invalidation for assignables, current_user missing in cache keys [SCI-6137]
10 lines
305 B
Ruby
10 lines
305 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserAssignment < ApplicationRecord
|
|
belongs_to :assignable, polymorphic: true, touch: 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
|