Project

General

Profile

Download (626 Bytes) Statistics
| Branch: | Tag: | Revision:
class GroupParameter < Parameter
belongs_to :hostgroup, :foreign_key => :reference_id
validates_uniqueness_of :name, :scope => :reference_id

private
def enforce_permissions operation
# We get called again with the operation being set to create
return true if operation == "edit" and new_record?

current = User.current

if current.allowed_to?("#{operation}_hostgroups".to_sym)
if current.hostgroups.empty? or current.hostgroups.include? hostgroup
return true
end
end

errors.add_to_base "You do not have permission to #{operation} this group parameter"
false
end
end
(16-16/54)