summaryrefslogtreecommitdiff
path: root/app/models/concerns/clusters/agents/authorization_config_scopes.rb
blob: 0a0406c338909a8a41e0423e2d768af8bddeff88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module Clusters
  module Agents
    module AuthorizationConfigScopes
      extend ActiveSupport::Concern

      included do
        scope :with_available_ci_access_fields, ->(project) {
          where("config->'access_as' IS NULL")
            .or(where("config->'access_as' = '{}'"))
            .or(where("config->'access_as' ?| array[:fields]", fields: available_ci_access_fields(project)))
        }
      end

      class_methods do
        def available_ci_access_fields(_project)
          %w(agent)
        end
      end
    end
  end
end

Clusters::Agents::AuthorizationConfigScopes.prepend_mod