-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(server,web): hide faces #3262
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
e8534a1
to
01cdd71
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a good start. A few notes:
- We can definitely filter out people when we get asset details. That could even be in the response dto mapper for now.
- I think the people endpoint needs to be able to return hidden people, so that we can use it to show a list that the user can toggle, although we do want to hide them on the explore page. We can keep filtering that client-side or have a query param to show hidden, and exclude them by default.
- In general we have
isAdmin
,isArchived
,isFavorite
,isVisible
, etc. Maybe it would be more consistent to have this be calledisHidden
.
636e0e5
to
f05ae0b
Compare
f05ae0b
to
0a0c699
Compare
Thank you for your feedback ! |
599497c
to
d71b45e
Compare
374fc40
to
56853f7
Compare
56853f7
to
c7626f4
Compare
8870bf9
to
aa4659f
Compare
I added more use cases with 2023-07-16.12-03-22.mp4 |
The latest video doesn't indicate that if you hide faces, how can you unhide them? |
The notification is hiding the |
c3bc941
to
a913d20
Compare
I think that is ok. It is unlikely to be a problem unless they're doing 100 or more. Even then, they're probably only going to do it once. So I think it's ok to not optimize by adding a new endpoint. |
a913d20
to
388b995
Compare
8ebeba9
to
8bb62a9
Compare
329dac9
to
d9d7433
Compare
d9d7433
to
af9f749
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks good to me.
This PR adds the ability to hide people from asset viewer & explore page.
To do:
move the logic from the client to serverfix bugssimplify the user-page-layoutadd server tests2023-07-16.22-57-37.mp4