Commit 1a0ee662 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'rails5-fix-48142' into 'master'

Rails5 fix Admin::HooksController

Closes #48142

See merge request gitlab-org/gitlab-ce!20017
parents 386a0499 e3046dca
......@@ -9,7 +9,7 @@ class Admin::HooksController < Admin::ApplicationController
end
def create
@hook = SystemHook.new(hook_params)
@hook = SystemHook.new(hook_params.to_h)
if @hook.save
redirect_to admin_hooks_path, notice: 'Hook was successfully created.'
......
---
title: Rails5 fix Admin::HooksController
merge_request: 20017
author: Jasper Maes
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment