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
Basics:
All users are allowed to create logs. If assigned other users are allowed to approve a log.
Advanced requirements:
It must be (optionally) possible to forbid/allow users to approve their own logs
It must be (optionally) possible to forbid/allow users to delete already approved logs
Problem:
I was not able to construct this setup with Bouncer's onboard methods so I plan to add a delete method to my policy which does the magic.
But I need to ask (only!) Bouncer if one of the actions are allowed - from Bouncer's side. While bouncer's →can method just passes to Laravel gate it results in an infinite loop.
Idea?
If there would be a can method which only checks against bouncer's data I could finalize the log within the Log Policy
I almost suspect that there is already a solution, but unfortunately I couldn't find it:
I have a
Log
model which is a report of an user which needs approval.My abilities:
These are assignable via system settings.
Basics:
All users are allowed to create logs. If assigned other users are allowed to approve a log.
Advanced requirements:
Problem:
I was not able to construct this setup with Bouncer's onboard methods so I plan to add a
delete
method to my policy which does the magic.But I need to ask (only!) Bouncer if one of the actions are allowed - from Bouncer's side. While bouncer's
→can
method just passes to Laravel gate it results in an infinite loop.Idea?
If there would be a
can
method which only checks against bouncer's data I could finalize the log within the Log PolicyMy current implementation feels like a workaround to me....
The text was updated successfully, but these errors were encountered: