debian-mirror-gitlab/app/services/users/saved_replies/destroy_service.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
469 B
Ruby
Raw Normal View History

2022-06-21 17:19:12 +05:30
# frozen_string_literal: true
module Users
module SavedReplies
class DestroyService
def initialize(saved_reply:)
@saved_reply = saved_reply
end
def execute
if saved_reply.destroy
ServiceResponse.success(payload: { saved_reply: saved_reply })
else
ServiceResponse.error(message: saved_reply.errors.full_messages)
end
end
private
attr_reader :saved_reply
end
end
end