nitnelave
nitnelave
Btw, checking in a bit late, did you manage to make it work? Now there's https://github.com/Zepmann/lldap-cli to help with managing attributes, and we're working on the web UI as well.
Hey! I'm glad that you could easily build a CLI frontend :) It seems like the frontend-agnostic API is paying off. As for the actual tool, I don't want to...
> Using GraphQL is an... interesting but confusing experience. In bash, I can definitely picture that :D Most languages have a framework that can generate some code based on the...
Alright, I merged that other PR, so the backend is functionally complete! You should be able to add the functionality to create attributes and add them to users. If/when you...
Hey @Zepmann , any progress? Do you think you could share your work as-is with what you already have? I know some people would be happy to have a CLI...
The LLDAP implementation hasn't changed much recently. Can you point me to something that didn't work? A call to your script or a GraphQL query? I'll try to have a...
There's a test for custom attributes through GraphQL, do your requests look like that? https://github.com/lldap/lldap/blob/main/server%2Fsrc%2Finfra%2Fgraphql%2Fquery.rs#L625
From what I can tell, your program works wonders: it can add/set new attributes, and they show up in the answer. I also tried querying with LDAP, and it works....
That feature sounds potentially useful. The bulk of the change would have to be in `server/src/infra/ldap_server.rs` and `server/src/infra/tcp_server.rs`, where we can use `bind_uds` instead of `bind`. How do you propose...
Connecting to the DB over UDS should be already possible: See https://github.com/launchbadge/sqlx/issues/449 and https://github.com/launchbadge/sqlx/issues/144 for the syntax.