Replies: 1 comment
-
Possible solution: DirectoryTree/LdapRecord#332 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want my LDAP to enforce certain security requirements for visibility and modifications of objects. Additionally, the default user does not have any permission to modify objects. I know I can use the
$stayAuthenticated
option for a single request, but I am wondering if there is a way to require that as part of the model.In my LoginController, I am saving the user's password so I can access it later:
For example, we have a mailing list/mail alias model:
FreeIPA enforces that users can only access and modify certain attributes of the entry. Is there any way to make sure in the
Model
that it is using the stored bind?It also seems incorrect to access
session()
in a model, so I am not sure where to put this information. Maybe a service provider that creates a dynamic$connection
? Looking for other ideas.Beta Was this translation helpful? Give feedback.
All reactions