Sha256: 0280802fd5110bb917d4766a4ca00bb1cfc9a3de9a880b31e33993e1a0675e6e
Contents?: true
Size: 1.72 KB
Versions: 1
Compression:
Stored size: 1.72 KB
Contents
module ForemanSalt class SaltModule < ActiveRecord::Base include Taxonomix include Authorizable extend FriendlyId friendly_id :name # before_destroy EnsureNotUsedBy.new(:hosts, :hostgroups) has_many :hosts, :through => :host_salt_modules, :class_name => '::Host::Managed' has_many :host_salt_modules, :foreign_key => :salt_module_id has_many :hostgroups, :through => :hostgroup_salt_modules has_many :hostgroup_salt_modules, :foreign_key => :salt_module_id has_many :salt_environments, :through => :salt_module_environments has_many :salt_module_environments validates :name, :uniqueness => true, :presence => true, :format => { :with => /\A(?:[\w\d\-]+\.{0,1})+[^\.]\z/, :message => N_('must be alphanumeric, can contain periods, dashes, underscores and must not contain spaces') } default_scope lambda { order('salt_modules.name') } scope :in_environment, ->(environment) { joins(:salt_environments).where('salt_module_environments.salt_environment_id' => environment) } scoped_search :on => :name, :complete_value => true scoped_search :in => :salt_environments, :on => :name, :complete_value => true, :rename => :environment scoped_search :in => :hostgroups, :on => :name, :complete_value => true, :rename => :hostgroup scoped_search :in => :hosts, :on => :name, :complete_value => true, :rename => :host def self.to_hash states = {} SaltEnvironment.all.each do |environment| states[environment.name] = environment.salt_modules.map(&:name) end states end def self.humanize_class_name(_name = nil) _('Salt state') end def self.permission_name(action) "#{action}_salt_modules" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
foreman_salt-3.0.2 | app/models/foreman_salt/salt_module.rb |