chore: rename service

This commit is contained in:
Muhsin Keloth
2025-04-10 10:47:48 +05:30
parent 4e7ae0af74
commit 09aecea4f8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ class Conversation < ApplicationRecord
delegate :auto_resolve_duration, to: :account
def can_reply?
Conversations::ReplyService.new(self).can_reply?
Conversations::CanReplyService.new(self).can_reply?
end
def language
+1 -1
View File
@@ -1,4 +1,4 @@
class Conversations::ReplyService
class Conversations::CanReplyService
def initialize(conversation)
@conversation = conversation
end