Skip to content

Commit

Permalink
Fix missing SSO endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwang401 committed Jan 5, 2024
1 parent 6aee64b commit e310c61
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions routes/api-application.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,10 @@ function () {
| Endpoint: /api/application/users
|
*/

Route::apiResource('users', Admin\UserController::class)
->only(['index', 'show', 'store', 'update', 'destroy']);
Route::post('/users/{user}/generate-sso-token', [Admin\UserController::class, 'getSSOToken']);

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit e310c61

Please sign in to comment.