Merge branch 'reduce-imports_controller-diff-with-ce' into 'master'

Make Projects::ImportsController EE-compatible

See merge request gitlab-org/gitlab-ce!23883
This commit is contained in:
Lin Jen-Shin 2018-12-18 12:50:14 +00:00
commit 257a61e8dd

View file

@ -13,7 +13,7 @@ class Projects::ImportsController < Projects::ApplicationController
end
def create
if @project.update(safe_import_params)
if @project.update(import_params)
@project.import_state.reload.schedule
end
@ -66,11 +66,11 @@ class Projects::ImportsController < Projects::ApplicationController
end
end
def import_params
params.require(:project).permit(:import_url)
def import_params_attributes
[:import_url]
end
def safe_import_params
import_params
def import_params
params.require(:project).permit(import_params_attributes)
end
end