You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just tried this gem, it's really great, save my day! But i found one issue with rolify gem, because there was duplicated roles and when i send something user get 2 same messages..
I fixed the issue by deleting the duplicates in seed.rb
So i get Role.create!, and User::HABTM_Roles.create!, Role::HABTM_Users.create!
But those two were duplicated each other so i just remove Role::HABTM_Users.create! and it's working great..
So i appreciate great job with this gem!
The text was updated successfully, but these errors were encountered:
I just tried this gem, it's really great, save my day! But i found one issue with rolify gem, because there was duplicated roles and when i send something user get 2 same messages..
I fixed the issue by deleting the duplicates in seed.rb
So i get
Role.create!
, andUser::HABTM_Roles.create!
,Role::HABTM_Users.create!
But those two were duplicated each other so i just remove
Role::HABTM_Users.create!
and it's working great..So i appreciate great job with this gem!
The text was updated successfully, but these errors were encountered: