-
- Downloads
Merge branch 'feature/project-import' into 'feature/project-export'
Project import functionality This is a MR for the import functionality of https://gitlab.com/gitlab-org/gitlab-ce/issues/3050, which adds the ability to import single projects. Branched off https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3114 - [x] members - DB data - [x] issues - [x] issue comments - [x] merge requests - [x] merge request diff - [x] merge request comments - [x] labels - [x] milestones - [x] snippets - [x] releases - [x] events - [x] commit statuses - [x] CI builds - File system data - [x] Git repository - [x] wiki - [x] uploads - [ ] ~~CI build traces~~ - [ ] ~~CI build artifacts~~ - [ ] ~~LFS objects~~ - DB configuration - [x] services - [x] web hooks - [x] protected branches - [x] deploy keys - [x] CI variables - [x] CI triggers See merge request !3142
Showing
- CHANGELOG 1 addition, 0 deletionsCHANGELOG
- Gemfile 1 addition, 1 deletionGemfile
- Gemfile.lock 2 additions, 2 deletionsGemfile.lock
- app/controllers/application_controller.rb 5 additions, 1 deletionapp/controllers/application_controller.rb
- app/controllers/import/gitlab_projects_controller.rb 48 additions, 0 deletionsapp/controllers/import/gitlab_projects_controller.rb
- app/controllers/projects_controller.rb 43 additions, 1 deletionapp/controllers/projects_controller.rb
- app/mailers/emails/projects.rb 13 additions, 0 deletionsapp/mailers/emails/projects.rb
- app/models/application_setting.rb 1 addition, 1 deletionapp/models/application_setting.rb
- app/models/commit_status.rb 2 additions, 1 deletionapp/models/commit_status.rb
- app/models/concerns/importable.rb 6 additions, 0 deletionsapp/models/concerns/importable.rb
- app/models/member.rb 6 additions, 5 deletionsapp/models/member.rb
- app/models/merge_request.rb 4 additions, 3 deletionsapp/models/merge_request.rb
- app/models/merge_request_diff.rb 2 additions, 1 deletionapp/models/merge_request_diff.rb
- app/models/note.rb 3 additions, 2 deletionsapp/models/note.rb
- app/models/project.rb 25 additions, 3 deletionsapp/models/project.rb
- app/services/notification_service.rb 8 additions, 0 deletionsapp/services/notification_service.rb
- app/services/projects/create_service.rb 6 additions, 4 deletionsapp/services/projects/create_service.rb
- app/services/projects/import_export/export_service.rb 13 additions, 2 deletionsapp/services/projects/import_export/export_service.rb
- app/services/projects/import_service.rb 16 additions, 9 deletionsapp/services/projects/import_service.rb
- app/views/import/gitlab_projects/new.html.haml 25 additions, 0 deletionsapp/views/import/gitlab_projects/new.html.haml
Loading
Please register or sign in to comment