blob: 27e720c3262123d8730c49f98a9f63df904ba412 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
module AlertManagement
class AlertAssignee < ApplicationRecord
belongs_to :alert, inverse_of: :alert_assignees
belongs_to :assignee, class_name: 'User', foreign_key: :user_id, inverse_of: :alert_assignees
validates :alert, presence: true
validates :assignee, presence: true, uniqueness: { scope: :alert_id }
end
end
|