Welcome to mirror list, hosted at ThFree Co, Russian Federation.

scope.rb « feature_flags « operations « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d70101b5e0d36552d85459441cfa38757d6ced06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Operations
  module FeatureFlags
    class Scope < ApplicationRecord
      prepend HasEnvironmentScope

      self.table_name = 'operations_scopes'

      belongs_to :strategy, class_name: 'Operations::FeatureFlags::Strategy'
    end
  end
end