summaryrefslogtreecommitdiff
path: root/app/controllers/admin/groups_controller.rb
diff options
context:
space:
mode:
authorPatricio Cano <suprnova32@gmail.com>2016-09-06 11:48:00 -0500
committerPatricio Cano <suprnova32@gmail.com>2016-09-15 14:10:49 -0500
commit02ddb9dff4084f615f744614cf81dc4166d61668 (patch)
treecb960761b5f5786d635d6acf06512ea713ad572e /app/controllers/admin/groups_controller.rb
parentd0279ccba5c4a2cd8611ddec04eeff67e0e9f9c6 (diff)
downloadgitlab-ce-02ddb9dff4084f615f744614cf81dc4166d61668.tar.gz
Syntax fixes and better tests for helper methods. Updated docs.group-specific-lfs-settings
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