Merge branch 'fix/import-export-admin' into 'master'
Enable Import/Export for non-admin users Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/21315 Related https://gitlab.com/gitlab-org/gitlab-ce/issues/20857 and https://gitlab.com/gitlab-org/gitlab-ce/issues/20821/ See merge request !6080
This commit is contained in:
commit
8c5701b622
6 changed files with 7 additions and 9 deletions
|
@ -21,6 +21,7 @@ v 8.13.0 (unreleased)
|
|||
- Close open merge request without source project (Katarzyna Kobierska Ula Budziszewska)
|
||||
- Use a ConnectionPool for Rails.cache on Sidekiq servers
|
||||
- Replace `alias_method_chain` with `Module#prepend`
|
||||
- Enable GitLab Import/Export for non-admin users.
|
||||
- Preserve label filters when sorting !6136 (Joseph Frazier)
|
||||
- Only update issuable labels if they have been changed
|
||||
- Take filters in account in issuable counters. !6496
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
class Import::GitlabProjectsController < Import::BaseController
|
||||
before_action :verify_gitlab_project_import_enabled
|
||||
before_action :authenticate_admin!
|
||||
|
||||
def new
|
||||
@namespace_id = project_params[:namespace_id]
|
||||
|
@ -48,8 +47,4 @@ class Import::GitlabProjectsController < Import::BaseController
|
|||
:path, :namespace_id, :file
|
||||
)
|
||||
end
|
||||
|
||||
def authenticate_admin!
|
||||
render_404 unless current_user.is_admin?
|
||||
end
|
||||
end
|
||||
|
|
|
@ -72,7 +72,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? && current_user.is_admin?
|
||||
- if gitlab_project_import_enabled?
|
||||
= link_to new_import_gitlab_project_path, class: 'btn btn_import_gitlab_project project-submit' do
|
||||
= icon('gitlab', text: 'GitLab export')
|
||||
|
||||
|
|
|
@ -7,7 +7,8 @@
|
|||
> that of the exporter.
|
||||
> - For existing installations, the project import option has to be enabled in
|
||||
> application settings (`/admin/application_settings`) under 'Import sources'.
|
||||
> You will have to be an administrator to enable and use the import functionality.
|
||||
> Ask your administrator if you don't see the **GitLab export** button when
|
||||
> creating a new project.
|
||||
> - You can find some useful raketasks if you are an administrator in the
|
||||
> [import_export](../../../administration/raketasks/project_import_export.md)
|
||||
> raketask.
|
||||
|
|
|
@ -20,6 +20,7 @@ class Spinach::Features::NewProject < Spinach::FeatureSteps
|
|||
expect(page).to have_link('GitLab.com')
|
||||
expect(page).to have_link('Google Code')
|
||||
expect(page).to have_link('Repo by URL')
|
||||
expect(page).to have_link('GitLab export')
|
||||
end
|
||||
|
||||
step 'I click on "Import project from GitHub"' do
|
||||
|
|
|
@ -86,14 +86,14 @@ feature 'Import/Export - project import integration test', feature: true, js: tr
|
|||
login_as(normal_user)
|
||||
end
|
||||
|
||||
scenario 'non-admin user is not allowed to import a project' do
|
||||
scenario 'non-admin user is allowed to import a project' do
|
||||
expect(Project.all.count).to be_zero
|
||||
|
||||
visit new_project_path
|
||||
|
||||
fill_in :project_path, with: 'test-project-path', visible: true
|
||||
|
||||
expect(page).not_to have_content('GitLab export')
|
||||
expect(page).to have_content('GitLab export')
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue