summaryrefslogtreecommitdiff
path: root/app/models/operations/feature_flags/scope.rb
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