summaryrefslogtreecommitdiff
path: root/app/models/chat_name.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/chat_name.rb')
-rw-r--r--app/models/chat_name.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/models/chat_name.rb b/app/models/chat_name.rb
index 60370c525d5..9bd618c1008 100644
--- a/app/models/chat_name.rb
+++ b/app/models/chat_name.rb
@@ -7,12 +7,10 @@ class ChatName < ApplicationRecord
belongs_to :user
validates :user, presence: true
- validates :integration, presence: true
validates :team_id, presence: true
validates :chat_id, presence: true
- validates :user_id, uniqueness: { scope: [:integration_id] }
- validates :chat_id, uniqueness: { scope: [:integration_id, :team_id] }
+ validates :chat_id, uniqueness: { scope: :team_id }
# Updates the "last_used_timestamp" but only if it wasn't already updated
# recently.