Sha256: da455e377b90ab14fdafcbbc640ce3ab39f7cb8ad5e7a0e2576103981b557855
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
module ForemanSalt class SaltEnvironment < ActiveRecord::Base include Taxonomix include Authorizable extend FriendlyId friendly_id :name has_many :hosts, :class_name => '::Host::Managed' has_many :hostgroups, :class_name => '::Hostgroup' has_many :salt_modules, :through => :salt_module_environments, :before_remove => :remove_from_hosts has_many :salt_module_environments validates :name, :uniqueness => true, :presence => true, :format => { :with => /\A[\w\d\.]+\z/, :message => N_('is alphanumeric and cannot contain spaces') } scoped_search :on => :name, :complete_value => true scoped_search :in => :hostgroups, :on => :name, :complete_value => true, :rename => :hostgroup scoped_search :in => :hosts, :on => :name, :complete_value => true, :rename => :host def self.humanize_class_name(_name = nil) _('Salt environment') end def self.permission_name(action) "#{action}_salt_environments" end private def remove_from_hosts(state) HostSaltModule.joins(:host).where(:hosts => { :salt_environment_id => id }, :salt_module_id => state).destroy 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_environment.rb |