Added U2F Support for YubiKey
This commit is contained in:
8
src/api/internal/index.ts
Normal file
8
src/api/internal/index.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { Router } from "express";
|
||||
import { OAuthInternalApp } from "./oauth";
|
||||
import PasswordAuth from "./password";
|
||||
|
||||
const InternalRoute: Router = Router();
|
||||
InternalRoute.get("/oauth", OAuthInternalApp);
|
||||
InternalRoute.post("/password", PasswordAuth)
|
||||
export default InternalRoute;
|
Reference in New Issue
Block a user