Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatricio Cano <suprnova32@gmail.com>2016-09-06 19:48:00 +0300
committerPatricio Cano <suprnova32@gmail.com>2016-09-15 22:10:49 +0300
commit02ddb9dff4084f615f744614cf81dc4166d61668 (patch)
treecb960761b5f5786d635d6acf06512ea713ad572e /app/controllers/admin/groups_controller.rb
parentd0279ccba5c4a2cd8611ddec04eeff67e0e9f9c6 (diff)
Syntax fixes and better tests for helper methods. Updated docs.
Diffstat (limited to 'app/controllers/admin/groups_controller.rb')
-rw-r--r--app/controllers/admin/groups_controller.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/controllers/admin/groups_controller.rb b/app/controllers/admin/groups_controller.rb
index adb8a891c32..aed77d0358a 100644
--- a/app/controllers/admin/groups_controller.rb
+++ b/app/controllers/admin/groups_controller.rb
@@ -61,13 +61,13 @@ class Admin::GroupsController < Admin::ApplicationController
def group_params
params.require(:group).permit(
- :name,
+ :avatar,
:description,
+ :lfs_enabled,
+ :name,
:path,
- :avatar,
- :visibility_level,
:request_access_enabled,
- :lfs_enabled
+ :visibility_level
)
end
end