0
ここで私を助けてくれることを願っています。 割り当て表を使用してユーザーのロールタイトルを表示
私はロールモデルを得た: has_many :users, :through => :role_assignments
has_many :role_assignments
役割の割り当てモデル:
belongs_to :user
belongs_to :role
とユーザモデル:
has_many :roles, :through => :role_assignments
has_many :role_assignments
は、私は、ユーザーの役割を表示したいですビュー。 user.roles.names
のようなものを試しましたが、それはうまくいきませんでした。
ありがとうDanne!どちらもうまくいく! – daniel