feat: implement idp server (#1111)

* feat: implement idp server

* chore: update
This commit is contained in:
boojack
2023-02-18 11:29:12 +08:00
committed by GitHub
parent 69726c3925
commit 0f57629d25
4 changed files with 242 additions and 7 deletions

View File

@ -116,6 +116,7 @@ func NewServer(ctx context.Context, profile *profile.Profile) (*Server, error) {
s.registerResourceRoutes(apiGroup)
s.registerTagRoutes(apiGroup)
s.registerStorageRoutes(apiGroup)
s.registerIdentityProviderRoutes(apiGroup)
return s, nil
}