search for: gacl_acl_sections

Displaying 1 result from an estimated 1 matches for "gacl_acl_sections".

2006 Jul 20
0
Refactoring common code to module
...(AroSection, AxoSection, AclSection etc.), several group types (AxoGroup, AroGroup) and several base Types (Acl, Axo, Aro, Aco). These share some common funcionality that only differs by name of the associations. module GACL class AclSection < ActiveRecord::Base set_table_name "gacl_acl_sections" has_many :acls, :dependent => true validates_presence_of :name, :value validates_numericality_of :order_value validates_uniqueness_of :value def instance_method_for_acl (would be the same functionality for the others, too) ... acls.each do |acl| ......