[next] SSO Refactor (#1912)

* feat: support dual sso/jwt auth

* feat: move verifier logic to seperate strategy

* fix: adjusted tests and removed aud claim

* fix: cleanup
This commit is contained in:
Wyatt Johnson
2018-09-26 16:26:44 +00:00
committed by GitHub
parent 122b9e9871
commit b916914faa
19 changed files with 461 additions and 374 deletions
+1 -1
View File
@@ -15,5 +15,5 @@ declare module "jsonwebtoken" {
secretOrPublicKey: string | Buffer | KeyFunction,
options?: VerifyOptions,
callback?: VerifyCallback
): void;
): object | string;
}