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