Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
826adaaf
Commit
826adaaf
authored
Jan 12, 2017
by
Robert Speicher
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'refactor-admin-controllers-params' into 'master'
Refactor admin controllers params See merge request !8521
parents
34087fe3
d8d9d0c7
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
90 additions
and
56 deletions
+90
-56
app/controllers/admin/application_settings_controller.rb
app/controllers/admin/application_settings_controller.rb
+52
-45
app/controllers/admin/groups_controller.rb
app/controllers/admin/groups_controller.rb
+6
-2
app/controllers/admin/users_controller.rb
app/controllers/admin/users_controller.rb
+32
-9
No files found.
app/controllers/admin/application_settings_controller.rb
View file @
826adaaf
...
...
@@ -67,69 +67,76 @@ class Admin::ApplicationSettingsController < Admin::ApplicationController
params
.
delete
(
:domain_blacklist_raw
)
if
params
[
:domain_blacklist_file
]
params
.
require
(
:application_setting
).
permit
(
:default_projects_limit
,
:default_branch_protection
,
:signup_enabled
,
:signin_enabled
,
:require_two_factor_authentication
,
:two_factor_grace_period
,
:gravatar_enabled
,
:sign_in_text
,
:after_sign_up_text
,
:help_page_text
,
:home_page_url
,
application_setting_params_ce
)
end
def
application_setting_params_ce
[
:admin_notification_email
,
:after_sign_out_path
,
:max_attachment_size
,
:session_expire_delay
,
:after_sign_up_text
,
:akismet_api_key
,
:akismet_enabled
,
:container_registry_token_expire_delay
,
:default_branch_protection
,
:default_group_visibility
,
:default_project_visibility
,
:default_projects_limit
,
:default_snippet_visibility
,
:default_group_visibility
,
:domain_whitelist_raw
,
:domain_blacklist_enabled
,
:domain_blacklist_raw
,
:domain_blacklist_file
,
:version_check_enabled
,
:admin_notification_email
,
:user_oauth_applications
,
:user_default_external
,
:shared_runners_enabled
,
:shared_runners_text
,
:domain_blacklist_raw
,
:domain_whitelist_raw
,
:email_author_in_body
,
:enabled_git_access_protocol
,
:gravatar_enabled
,
:help_page_text
,
:home_page_url
,
:housekeeping_bitmaps_enabled
,
:housekeeping_enabled
,
:housekeeping_full_repack_period
,
:housekeeping_gc_period
,
:housekeeping_incremental_repack_period
,
:html_emails_enabled
,
:koding_enabled
,
:koding_url
,
:max_artifacts_size
,
:max_attachment_size
,
:metrics_enabled
,
:metrics_host
,
:metrics_port
,
:metrics_pool_size
,
:metrics_timeout
,
:metrics_method_call_threshold
,
:metrics_packet_size
,
:metrics_pool_size
,
:metrics_port
,
:metrics_sample_interval
,
:metrics_timeout
,
:recaptcha_enabled
,
:recaptcha_site_key
,
:recaptcha_private_key
,
:sentry_enabled
,
:sentry_dsn
,
:akismet_enabled
,
:akismet_api_key
,
:koding_enabled
,
:koding_url
,
:email_author_in_body
,
:html_emails_enabled
,
:recaptcha_site_key
,
:repository_checks_enabled
,
:metrics_packet_size
,
:require_two_factor_authentication
,
:session_expire_delay
,
:sign_in_text
,
:signin_enabled
,
:signup_enabled
,
:sentry_dsn
,
:sentry_enabled
,
:send_user_confirmation_email
,
:
container_registry_token_expire_delay
,
:
enabled_git_access_protocol
,
:
shared_runners_enabled
,
:
shared_runners_text
,
:sidekiq_throttling_enabled
,
:sidekiq_throttling_factor
,
:housekeeping_enabled
,
:housekeeping_bitmaps_enabled
,
:housekeeping_incremental_repack_period
,
:housekeeping_full_repack_period
,
:housekeeping_gc_period
,
:two_factor_grace_period
,
:user_default_external
,
:user_oauth_applications
,
:version_check_enabled
,
disabled_oauth_sign_in_sources:
[],
import_sources:
[],
repository_storages:
[],
restricted_visibility_levels:
[],
import_sources:
[],
disabled_oauth_sign_in_sources:
[],
sidekiq_throttling_queues:
[]
)
]
end
end
app/controllers/admin/groups_controller.rb
View file @
826adaaf
...
...
@@ -61,7 +61,11 @@ class Admin::GroupsController < Admin::ApplicationController
end
def
group_params
params
.
require
(
:group
).
permit
(
params
.
require
(
:group
).
permit
(
group_params_ce
)
end
def
group_params_ce
[
:avatar
,
:description
,
:lfs_enabled
,
...
...
@@ -69,6 +73,6 @@ class Admin::GroupsController < Admin::ApplicationController
:path
,
:request_access_enabled
,
:visibility_level
)
]
end
end
app/controllers/admin/users_controller.rb
View file @
826adaaf
...
...
@@ -161,15 +161,6 @@ class Admin::UsersController < Admin::ApplicationController
@user
||=
User
.
find_by!
(
username:
params
[
:id
])
end
def
user_params
params
.
require
(
:user
).
permit
(
:email
,
:remember_me
,
:bio
,
:name
,
:username
,
:skype
,
:linkedin
,
:twitter
,
:website_url
,
:color_scheme_id
,
:theme_id
,
:force_random_password
,
:extern_uid
,
:provider
,
:password_expires_at
,
:avatar
,
:hide_no_ssh_key
,
:hide_no_password
,
:projects_limit
,
:can_create_group
,
:admin
,
:key_id
,
:external
)
end
def
redirect_back_or_admin_user
(
options
=
{})
redirect_back_or_default
(
default:
default_route
,
options:
options
)
end
...
...
@@ -177,4 +168,36 @@ class Admin::UsersController < Admin::ApplicationController
def
default_route
[
:admin
,
@user
]
end
def
user_params
params
.
require
(
:user
).
permit
(
user_params_ce
)
end
def
user_params_ce
[
:admin
,
:avatar
,
:bio
,
:can_create_group
,
:color_scheme_id
,
:email
,
:extern_uid
,
:external
,
:force_random_password
,
:hide_no_password
,
:hide_no_ssh_key
,
:key_id
,
:linkedin
,
:name
,
:password_expires_at
,
:projects_limit
,
:provider
,
:remember_me
,
:skype
,
:theme_id
,
:twitter
,
:username
,
:website_url
]
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment