Sha256: ae859023d6682cbfb4b2c8670082c3ad0dfabe45faba6b9c1c755a8946e513d4
Contents?: true
Size: 915 Bytes
Versions: 1
Compression:
Stored size: 915 Bytes
Contents
class <%= role_c %> < ActiveRecord::Base has_and_belongs_to_many :related_users, join_table: '<%= subj_role_tb %>', foreign_key: :<%= name_u %>_id, class_name: '<%= name_c %>', association_foreign_key: :<%= role_u %>_id <% unless @ii_opts[:without_group] %> has_and_belongs_to_many :related_stored_groups, join_table: '<%= group_role_tb %>', foreign_key: :<%= group_u %>_id, class_name: '<%= group_c %>', association_foreign_key: :<%= role_u %>_id <% end %> has_and_belongs_to_many :permissions, join_table: '<%= role_pms_tb %>', foreign_key: :<%= permission_u %>_id, class_name: '<%= permission_c %>', association_foreign_key: :<%= role_u %>_id has_many_temporary_permissions acts_as_role # default_scope { with_stored_permissions } end __END__ string :name, null: false string :desc index :name, unique: true
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
i_am_i_can-4.0.0 | lib/generators/i_am_i_can/templates/models/role.erb |