class ForemanSalt::SaltVariable

Represents the variables used in Salt

def self.humanize_class_name(options = nil)

def self.humanize_class_name(options = nil)
  if options.present?
    super
  else
    'Salt variable'
  end
end

def editable_by_user?

def editable_by_user?
  SaltVariable.authorized(:edit_external_parameters).exists?(id: id)
end

def salt?

def salt?
  true
end