Fix wrong view being displayed when a webhook fails validation (#25464)

local
Claire 11 months ago committed by GitHub
parent c78280a8ce
commit fd23f50243
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/controllers/admin/webhooks_controller.rb
  2. 2
      spec/controllers/admin/webhooks_controller_spec.rb

@ -42,7 +42,7 @@ module Admin
if @webhook.update(resource_params)
redirect_to admin_webhook_path(@webhook)
else
render :show
render :edit
end
end

@ -82,7 +82,7 @@ describe Admin::WebhooksController do
end.to_not change(webhook, :url)
expect(response).to have_http_status(:success)
expect(response).to render_template(:show)
expect(response).to render_template(:edit)
end
end

Loading…
Cancel
Save