Sha256: af9e65a9bcf59f23c4d38b84ad7b757c357b8b1a4b50948844cbd3d22abc8b6b
Contents?: true
Size: 748 Bytes
Versions: 7
Compression:
Stored size: 748 Bytes
Contents
hobo_model # Don't put anything above this fields do <% for attribute in field_attributes -%> <%= "%-#{max_attribute_length}s" % attribute.name %> :<%= attribute.type %> <% end -%> timestamps end attr_accessible <%= accessible_attributes.map {|a| ":#{a.name}"}.join ", " %> <% for bt in bts -%> belongs_to :<%= bt %> <% end -%> <%= "\n" unless bts.empty? -%> <% for hm in hms -%> has_many :<%= hm %>, :dependent => :destroy <% end -%> <%= "\n" unless hms.empty? -%> # --- Permissions --- # def create_permitted? acting_user.administrator? end def update_permitted? acting_user.administrator? end def destroy_permitted? acting_user.administrator? end def view_permitted?(field) true end
Version data entries
7 entries across 7 versions & 1 rubygems