Ignore Metrics/AbcSize in share worker

This commit is contained in:
Karina Kwiatek 2023-01-02 09:41:14 +01:00
parent 873d6a2c88
commit 81c9870af4
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ class ShareWorker
# @param user_id [Integer] the user id
# @param answer_id [Integer] the user id
# @param service [String] the service to post to
def perform(user_id, answer_id, service)
def perform(user_id, answer_id, service) # rubocop:disable Metrics/AbcSize
@user_service = User.find(user_id).services.find_by(type: "Services::#{service.camelize}")
@user_service.post(Answer.find(answer_id))