diff options
author | James Lopez <james@jameslopez.es> | 2016-08-11 16:59:37 +0200 |
---|---|---|
committer | James Lopez <james@jameslopez.es> | 2016-08-11 16:59:37 +0200 |
commit | 30f9596c612abc19dd060fa3a8e8ae3d92001d45 (patch) | |
tree | 2d63a2407f4e99a22be8581194d40cebf4535d98 /app/views/projects/new.html.haml | |
parent | 34d5426f0e17a9d0a2d2330b472114e7e457ae05 (diff) | |
download | gitlab-ce-30f9596c612abc19dd060fa3a8e8ae3d92001d45.tar.gz |
Fix permissions check in controller, added relevant spec and updated docs
Diffstat (limited to 'app/views/projects/new.html.haml')
-rw-r--r-- | app/views/projects/new.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/new.html.haml b/app/views/projects/new.html.haml index adcc984f506..ea4898f2107 100644 --- a/app/views/projects/new.html.haml +++ b/app/views/projects/new.html.haml @@ -77,7 +77,7 @@ = link_to "#", class: 'btn js-toggle-button import_git' do = icon('git', text: 'Repo by URL') %div{ class: 'import_gitlab_project' } - - if gitlab_project_import_enabled? + - if gitlab_project_import_enabled? && current_user.is_admin? = link_to new_import_gitlab_project_path, class: 'btn btn_import_gitlab_project project-submit' do = icon('gitlab', text: 'GitLab export') |