Fix admin APIs returning deleted object instead of empty object upon delete (#19479)

Fix #19153
This commit is contained in:
Eugen Rochko
2022-10-30 02:43:57 +02:00
committed by GitHub
parent 5724da0780
commit 276b85bc91
6 changed files with 7 additions and 21 deletions

View File

@ -43,7 +43,7 @@ class Api::V1::Admin::DomainAllowsController < Api::BaseController
authorize @domain_allow, :destroy?
UnallowDomainService.new.call(@domain_allow)
log_action :destroy, @domain_allow
render json: @domain_allow, serializer: REST::Admin::DomainAllowSerializer
render_empty
end
private