Project

General

Profile

Download (613 Bytes) Statistics
| Branch: | Tag: | Revision:
class DomainParameter < Parameter
belongs_to :domain, :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}_domains".to_sym)
if current.domains.empty? or current.domains.include? domain
return true
end
end

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