summaryrefslogtreecommitdiff
path: root/app/models/concerns/ci/has_deployment_name.rb
blob: fe288134872c3f6d216c06435b1c467478f96c68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Ci
  module HasDeploymentName
    extend ActiveSupport::Concern

    def count_user_deployment?
      Feature.enabled?(:job_deployment_count) && deployment_name?
    end

    def deployment_name?
      self.class::DEPLOYMENT_NAMES.any? { |n| name.downcase.include?(n) }
    end
  end
end