7e9348f359
- 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
25 lines
717 B
Ruby
25 lines
717 B
Ruby
# frozen_string_literal: true
|
|
|
|
module AutoDevopsHelper
|
|
def show_auto_devops_callout?(project)
|
|
Feature.get(:auto_devops_banner_disabled).off? &&
|
|
show_callout?('auto_devops_settings_dismissed') &&
|
|
can?(current_user, :admin_pipeline, project) &&
|
|
project.has_auto_devops_implicitly_disabled? &&
|
|
!project.repository.gitlab_ci_yml &&
|
|
!project.ci_service
|
|
end
|
|
|
|
def badge_for_auto_devops_scope(auto_devops_receiver)
|
|
return unless auto_devops_receiver.auto_devops_enabled?
|
|
|
|
case auto_devops_receiver.first_auto_devops_config[:scope]
|
|
when :project
|
|
nil
|
|
when :group
|
|
s_('CICD|group enabled')
|
|
when :instance
|
|
s_('CICD|instance enabled')
|
|
end
|
|
end
|
|
end
|