From 125a298dbaaba73ec5e2e40b186c8a5d5c0fb558 Mon Sep 17 00:00:00 2001 From: Emelia Smith Date: Wed, 20 Nov 2024 20:39:37 +0100 Subject: [PATCH] Apply suggestions from code review --- app/controllers/api/v1/admin/accounts/notes_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/api/v1/admin/accounts/notes_controller.rb b/app/controllers/api/v1/admin/accounts/notes_controller.rb index 7dfe3cfd39..6db0e1fcbc 100644 --- a/app/controllers/api/v1/admin/accounts/notes_controller.rb +++ b/app/controllers/api/v1/admin/accounts/notes_controller.rb @@ -11,7 +11,7 @@ class Api::V1::Admin::Accounts::NotesController < Api::BaseController before_action -> { authorize_if_got_token! :'admin:read', :'admin:read:accounts' }, only: [:index, :show] before_action -> { authorize_if_got_token! :'admin:write', :'admin:write:accounts' }, except: [:index, :show] before_action :set_account - before_action :set_account_note, except: [:index, :create] + before_action :set_account_moderation_note, except: [:index, :create] rescue_from ArgumentError do |e| render json: { error: e.to_s }, status: 422 @@ -48,7 +48,7 @@ class Api::V1::Admin::Accounts::NotesController < Api::BaseController @account = Account.find(params[:account_id]) end - def set_account_note + def set_account_moderation_note @account_moderation_note = AccountModerationNote.where(target_account_id: params[:account_id]).find(params[:id]) end