mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 16:25:55 +03:00
[GH-ISSUE #358] Ability to remove profile picture #135
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#135
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @wailashi on GitHub (Oct 31, 2022).
Original GitHub issue: https://github.com/lldap/lldap/issues/358
Currently there is no way to remove the profile picture of a user after it has been set.
The user page could have a button to remove the photo if one is set.
Thanks for a great tool!
@pixelrazor commented on GitHub (Mar 23, 2023):
Some notes from me tinkering with it so far: it's been a pain to get lldap to store NULL - the closest i can get is an empty blob (which is effectively the same) - the only issue is ensuring some sort of consistency to make sure we're returning NULL in the graphql queries
@nitnelave commented on GitHub (Mar 23, 2023):
For firstName/lastName, that's what I did in GraphQL: an empty string means no name. I'm not opposed to doing the same thing with the avatar.
@pixelrazor commented on GitHub (Mar 23, 2023):
I would like for there to be some sort of consistency for representations - i don't care as much what it is under the hood (though consistency there is nice too) but at the very least for external interfaces. Treating avatar the same as the name fields would be perfect
@nitnelave commented on GitHub (Mar 23, 2023):
Then you have my blessing if you want to do this change!