-
- Downloads
There was an error fetching the commit references. Please try again later.
Enable/disable Auto DevOps at Group level
- Includes instance methods on Group model to detect when a group has AutoDevOps explicitly/implicitly enabled/disabled. - Includes migration to add a new column to namespaces table - Add UI necessary modifications - Add service and controller to update auto devops related instances - Updates project and groups auto devops badges Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/52447
Showing
- app/controllers/groups/settings/ci_cd_controller.rb 18 additions, 0 deletionsapp/controllers/groups/settings/ci_cd_controller.rb
- app/helpers/auto_devops_helper.rb 13 additions, 0 deletionsapp/helpers/auto_devops_helper.rb
- app/models/namespace.rb 17 additions, 0 deletionsapp/models/namespace.rb
- app/models/project.rb 12 additions, 3 deletionsapp/models/project.rb
- app/services/groups/auto_devops_service.rb 17 additions, 0 deletionsapp/services/groups/auto_devops_service.rb
- app/views/groups/settings/ci_cd/_auto_devops_form.html.haml 15 additions, 0 deletionsapp/views/groups/settings/ci_cd/_auto_devops_form.html.haml
- app/views/groups/settings/ci_cd/show.html.haml 14 additions, 0 deletionsapp/views/groups/settings/ci_cd/show.html.haml
- app/views/projects/settings/ci_cd/_autodevops_form.html.haml 4 additions, 4 deletionsapp/views/projects/settings/ci_cd/_autodevops_form.html.haml
- app/views/projects/settings/ci_cd/show.html.haml 1 addition, 1 deletionapp/views/projects/settings/ci_cd/show.html.haml
- changelogs/unreleased/52447-auto-devops-at-group-level.yml 5 additions, 0 deletionschangelogs/unreleased/52447-auto-devops-at-group-level.yml
- config/routes/group.rb 1 addition, 0 deletionsconfig/routes/group.rb
- db/migrate/20190225152525_add_auto_dev_ops_enabled_to_namespaces.rb 9 additions, 0 deletions.../20190225152525_add_auto_dev_ops_enabled_to_namespaces.rb
- db/schema.rb 1 addition, 0 deletionsdb/schema.rb
- locale/gitlab.pot 18 additions, 0 deletionslocale/gitlab.pot
- spec/controllers/groups/settings/ci_cd_controller_spec.rb 73 additions, 0 deletionsspec/controllers/groups/settings/ci_cd_controller_spec.rb
- spec/factories/groups.rb 8 additions, 0 deletionsspec/factories/groups.rb
- spec/factories/projects.rb 4 additions, 0 deletionsspec/factories/projects.rb
- spec/features/groups/settings/ci_cd_spec.rb 43 additions, 2 deletionsspec/features/groups/settings/ci_cd_spec.rb
- spec/features/projects/settings/pipelines_settings_spec.rb 31 additions, 0 deletionsspec/features/projects/settings/pipelines_settings_spec.rb
- spec/helpers/auto_devops_helper_spec.rb 135 additions, 3 deletionsspec/helpers/auto_devops_helper_spec.rb
app/services/groups/auto_devops_service.rb
0 → 100644
Please register or sign in to comment