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

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

module Clusters
  class Instance
    def clusters
      Clusters::Cluster.instance_type
    end

    def flipper_id
      self.class.to_s
    end
  end
end