fix: double rendor error on message create api for suspended accounts (#7917)

This commit is contained in:
Vishnu Narayanan
2023-09-14 20:06:48 +05:30
committed by GitHub
parent 94a20af9db
commit 7b6a56714f
2 changed files with 13 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ module EnsureCurrentAccountHelper
def ensure_current_account
account = Account.find(params[:account_id])
ensure_account_is_active?(account)
render_unauthorized('Account is suspended') and return unless account.active?
if current_user
account_accessible_for_user?(account)
@@ -27,8 +27,4 @@ module EnsureCurrentAccountHelper
def account_accessible_for_bot?(account)
render_unauthorized('You are not authorized to access this account') unless @resource.agent_bot_inboxes.find_by(account_id: account.id)
end
def ensure_account_is_active?(account)
render_unauthorized('Account is suspended') unless account.active?
end
end