-
I am using the Blameable Behaviour to log who creates/updated records. What I try to archvie is: I edit the job so that it also holds the user_id of the user creating the job. But how can I use this info in the console? Thanks for any ideas! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
When app has Maybe useful? Other way is to mock |
Beta Was this translation helpful? Give feedback.
-
Hi, |
Beta Was this translation helpful? Give feedback.
-
After more digging I am using this approach now: In console/config/main adding this to the components:
then inside the job we can do this:
'setIdentity' does not create session and also does not use Authentification etc. So for this user case perfect. Thanks @tomaszkane for thinking with me on solutions. |
Beta Was this translation helpful? Give feedback.
After more digging I am using this approach now:
In console/config/main adding this to the components:
then inside the job we can do this:
'setIdentity' does not create session and also does not use Authentification etc. So for this user case perfect.
Thanks @tomaszkane for thinking with me on solutions.