UNPKG

moleculer-iam

Version:

Centralized IAM module for moleculer. Including a certified OIDC provider and an Identity provider for user profile, credentials, and custom claims management. Custom claims could be defined/updated by declarative schema which contains claims validation a

13 lines 444 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.buildAbortRoutes = void 0; function buildAbortRoutes(builder, opts) { builder.app.router.get("/abort", async (ctx) => { return ctx.op.redirectWithUpdate({ error: "access_denied", error_description: "end-user aborted app.", }); }); } exports.buildAbortRoutes = buildAbortRoutes; //# sourceMappingURL=abort.js.map