Fix Either<> pass in OAuth2Server; bump version
This commit is contained in:
parent
ce4133ff8e
commit
015d6fd6ae
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@extollo/lib",
|
||||
"version": "0.9.35",
|
||||
"version": "0.9.36",
|
||||
"description": "The framework library that lifts up your code.",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
@ -13,7 +13,7 @@ import {
|
||||
TokenRepository,
|
||||
} from './types'
|
||||
import {HTTPError} from '../../http/HTTPError'
|
||||
import {Awaitable, HTTPStatus, left, Maybe} from '../../util'
|
||||
import {Awaitable, HTTPStatus, Maybe, right} from '../../util'
|
||||
import {view} from '../../http/response/ViewResponseFactory'
|
||||
import {SecurityContext} from '../context/SecurityContext'
|
||||
import {redirect} from '../../http/response/RedirectResponseFactory'
|
||||
@ -47,7 +47,7 @@ export class OAuth2Server extends Controller {
|
||||
Route.post('/oauth2/token')
|
||||
.alias('@oauth2:token')
|
||||
.parameterMiddleware<OAuth2Client>(async req =>
|
||||
left(req.make<OAuth2Server>(OAuth2Server).getClientFromRequest(req)))
|
||||
right(await req.make<OAuth2Server>(OAuth2Server).getClientFromRequest(req)))
|
||||
.passingRequest()
|
||||
.calls<OAuth2Server>(OAuth2Server, x => x.issue)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user