Sha256: b6083e9838842541c41f87a3b2492b3ffde69cf7e5d68d35618030b1621e4421

Contents?: true

Size: 647 Bytes

Versions: 2

Compression:

Stored size: 647 Bytes

Contents

class RoleGroup < ActiveRecord::Base
  has_and_belongs_to_many :permissions,
                          join_table: '<%= group_pms_tb %>', foreign_key: :<%= permission_u %>_id, class_name: '<%= permission_c %>', association_foreign_key: :<%= group_u %>_id

  has_and_belongs_to_many :members,
                          join_table: '<%= group_role_tb %>', foreign_key: :<%= role_u %>_id, class_name: '<%= role_c %>', association_foreign_key: :<%= group_u %>_id

  acts_as_role_group

  # default_scope { with_members) }

  # default_scope { with_permissions) }
end

__END__

  string  :name, null: false
  string  :desc

  index :name, unique: true

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
i_am_i_can-4.2.0 lib/generators/i_am_i_can/templates/models/role_group.erb
i_am_i_can-4.1.0 lib/generators/i_am_i_can/templates/models/role_group.erb