debian-mirror-gitlab/app/models/clusters/instance.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
187 B
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
module Clusters
class Instance
def clusters
Clusters::Cluster.instance_type
end
2019-12-26 22:10:19 +05:30
def flipper_id
self.class.to_s
end
2019-07-31 22:56:46 +05:30
end
end