Fix ImportsController param to permit :mode (#13347)

This commit is contained in:
Takeshi Umeda 2020-03-31 19:43:42 +09:00 committed by GitHub
parent a37ff2bd8b
commit e4617c8ed8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,6 +29,6 @@ class Settings::ImportsController < Settings::BaseController
end
def import_params
params.require(:import).permit(:data, :type)
params.require(:import).permit(:data, :type, :mode)
end
end