fix: controller routes
This commit is contained in:
parent
10bb43a6f0
commit
8bf8ab40ab
1 changed files with 4 additions and 4 deletions
|
@ -35,10 +35,10 @@ return [
|
||||||
->patch('/oauth-clients/{id}', 'oauth.clients.update', Api\Controller\UpdateClientController::class)
|
->patch('/oauth-clients/{id}', 'oauth.clients.update', Api\Controller\UpdateClientController::class)
|
||||||
->delete('/oauth-clients/{id}', 'oauth.clients.delete', Api\Controller\DeleteClientController::class)
|
->delete('/oauth-clients/{id}', 'oauth.clients.delete', Api\Controller\DeleteClientController::class)
|
||||||
|
|
||||||
->get('/oauth-scopes', 'oauth.clients.list', Api\Controller\ListClientController::class)
|
->get('/oauth-scopes', 'oauth.scopes.list', Api\Controller\ListScopeController::class)
|
||||||
->post('/oauth-scopes', 'oauth.clients.create', Api\Controller\CreateClientController::class)
|
->post('/oauth-scopes', 'oauth.scopes.create', Api\Controller\CreateScopeController::class)
|
||||||
->patch('/oauth-scopes/{id}', 'oauth.clients.update', Api\Controller\UpdateClientController::class)
|
->patch('/oauth-scopes/{id}', 'oauth.scopes.update', Api\Controller\UpdateScopeController::class)
|
||||||
->delete('/oauth-scopes/{id}', 'oauth.clients.delete', Api\Controller\DeleteClientController::class),
|
->delete('/oauth-scopes/{id}', 'oauth.scopes.delete', Api\Controller\DeleteScopeController::class),
|
||||||
|
|
||||||
(new Extend\Settings)
|
(new Extend\Settings)
|
||||||
->serializeToForum('foskym-oauth-center.allow_implicit', 'foskym-oauth-center.allow_implicit', 'boolval')
|
->serializeToForum('foskym-oauth-center.allow_implicit', 'foskym-oauth-center.allow_implicit', 'boolval')
|
||||||
|
|
Loading…
Reference in a new issue