Skip to content
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

Add profile_picture to user capabilities #2036

Merged
merged 1 commit into from
May 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Enhancement: Announce user profile picture capability

Added a new capability (through https://github.com/cs3org/reva/pull/1694) to prevent
the web frontend from fetching (nonexistent) user avatar profile pictures which added
latency & console errors.

https://github.com/owncloud/ocis/pull/2036
3 changes: 2 additions & 1 deletion storage/pkg/command/frontend.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ func frontendConfigFromStruct(c *cli.Context, cfg *config.Config, filesCfg map[s
},
},
"user": map[string]interface{}{
"send_mail": true,
"send_mail": true,
"profile_picture": false,
},
"user_enumeration": map[string]interface{}{
"enabled": true,
Expand Down