Linting.
This commit is contained in:
parent
1d6a350311
commit
24012c2fba
|
@ -55,10 +55,7 @@ router
|
||||||
// deprecated - used by the default system before tenancy
|
// deprecated - used by the default system before tenancy
|
||||||
.get("/api/global/auth/google", authController.googlePreAuth)
|
.get("/api/global/auth/google", authController.googlePreAuth)
|
||||||
.get("/api/global/auth/google/callback", authController.googleAuth)
|
.get("/api/global/auth/google/callback", authController.googleAuth)
|
||||||
.get(
|
.get("/api/global/auth/oidc/configs/:configId", authController.oidcPreAuth)
|
||||||
"/api/global/auth/oidc/configs/:configId",
|
|
||||||
authController.oidcPreAuth
|
|
||||||
)
|
|
||||||
.get("/api/global/auth/oidc/callback", authController.oidcAuth)
|
.get("/api/global/auth/oidc/callback", authController.oidcAuth)
|
||||||
|
|
||||||
module.exports = router
|
module.exports = router
|
||||||
|
|
|
@ -3,7 +3,6 @@ const controller = require("../../controllers/global/flags")
|
||||||
|
|
||||||
const router = Router()
|
const router = Router()
|
||||||
|
|
||||||
router
|
router.get("/api/global/flags", controller.fetch)
|
||||||
.get("/api/global/flags", controller.fetch)
|
|
||||||
|
|
||||||
module.exports = router
|
module.exports = router
|
Loading…
Reference in New Issue