initial /me/drives implementation

Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
This commit is contained in:
Jörn Friedrich Dreyer
2021-07-08 10:04:01 +02:00
parent 322cb454c4
commit 449edd31c8
4 changed files with 176 additions and 25 deletions
+15 -10
View File
@@ -63,18 +63,23 @@ type Reva struct {
Address string
}
type Spaces struct {
WebDavBase string
}
// Config combines all available configuration parts.
type Config struct {
File string
WebdavNamespace string
Log Log
Debug Debug
HTTP HTTP
Server Server
Tracing Tracing
Ldap Ldap
OpenIDConnect OpenIDConnect
Reva Reva
File string
WebdavNamespace string
Log Log
Debug Debug
HTTP HTTP
Server Server
Tracing Tracing
Ldap Ldap
OpenIDConnect OpenIDConnect
Reva Reva
Spaces Spaces
Context context.Context
Supervised bool