mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-23 04:28:48 -05:00
a34a3b2a98
* Remove unused code from oidc module * Use already existing Metadata type for jwks discovery ocis-pkg/oidc already provides a type for the oidc metadata. Switch to that instead of defining yet another custom type. * oidc: Add helper to get IDP metadata
15 lines
352 B
Go
15 lines
352 B
Go
package oidc
|
|
|
|
const (
|
|
Iss = "iss"
|
|
Sub = "sub"
|
|
Email = "email"
|
|
Name = "name"
|
|
PreferredUsername = "preferred_username"
|
|
UIDNumber = "uidnumber"
|
|
GIDNumber = "gidnumber"
|
|
Groups = "groups"
|
|
OwncloudUUID = "ownclouduuid"
|
|
OcisRoutingPolicy = "ocis.routing.policy"
|
|
)
|