diff options
author | Jose Ivan Vargas <jvargas@gitlab.com> | 2016-12-30 11:30:25 -0600 |
---|---|---|
committer | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-01-18 15:19:35 -0600 |
commit | 9f0d794513d2ce1c990e61f4d21efe1dcad845fd (patch) | |
tree | 7a7b11f5ce6b42977855ef25fa87aec1a272a244 /app/helpers/gitlab_routing_helper.rb | |
parent | 61b6643eae98640a7ea73152f0e8b1cde6e27386 (diff) | |
download | gitlab-ce-9f0d794513d2ce1c990e61f4d21efe1dcad845fd.tar.gz |
Moved the webhooks and services gear options to a single one called integrations
Diffstat (limited to 'app/helpers/gitlab_routing_helper.rb')
-rw-r--r-- | app/helpers/gitlab_routing_helper.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/helpers/gitlab_routing_helper.rb b/app/helpers/gitlab_routing_helper.rb index 5742fec4458..44e22d6abd5 100644 --- a/app/helpers/gitlab_routing_helper.rb +++ b/app/helpers/gitlab_routing_helper.rb @@ -208,6 +208,9 @@ module GitlabRoutingHelper end # Settings + def project_settings_integrations_path(project, *args) + namespace_project_settings_integrations_path(project.namespace, project, *args) + end def project_settings_members_path(project, *args) namespace_project_settings_members_path(project.namespace, project, *args) end |