File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ public function removeAllSuperAdminUsersFromOtherRoles($assignedUsers)
69
69
public function assignUsersToRoles ($ assignedUsers )
70
70
{
71
71
foreach ($ assignedUsers as $ role => $ users ) {
72
- if ($ role === 'SuperAdmin ' || $ role === ' Member ' ) {
72
+ if ($ role === 'Member ' ) {
73
73
continue ;
74
74
}
75
75
@@ -81,13 +81,15 @@ public function assignUsersToRoles($assignedUsers)
81
81
}
82
82
}
83
83
84
- public function removeAllUsersFromRoles ( )
84
+ public function removeUsersFromRoles ( $ assignedUsers )
85
85
{
86
86
$ this ->roles
87
- ->with (' users ' )
87
+ ->with (" users " )
88
88
->get ()
89
- ->each (function ($ role ) {
90
- $ role ->users ()->detach ();
89
+ ->each (function ($ role ) use ($ assignedUsers ) {
90
+ $ role ->users ()
91
+ ->whereIn ("id " , $ assignedUsers )
92
+ ->detach ();
91
93
});
92
94
}
93
95
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public function process(): void
23
23
{
24
24
$ assignmentClass = config ("genealabs-laravel-governor.models.assignment " );
25
25
$ assignment = new $ assignmentClass ;
26
- $ assignment ->removeAllUsersFromRoles ( );
26
+ $ assignment ->removeUsersFromRoles ( $ this -> users );
27
27
$ assignment ->assignUsersToRoles ($ this ->users );
28
28
$ assignment ->addAllUsersToMemberRole ();
29
29
}
You can’t perform that action at this time.
0 commit comments