Files
instrucoes_gerais/clube67/newwhats.local/plugins/core-auth/index.js
T

23 lines
900 B
JavaScript

"use strict";
// ============================================================
// Plugin: core-auth — Entry Point
// ============================================================
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const routes_1 = require("./backend/routes");
const manifest_json_1 = __importDefault(require("./manifest.json"));
const plugin = {
manifest: manifest_json_1.default,
async activate(ctx) {
const router = (0, routes_1.createAuthRoutes)(ctx);
ctx.app.use('/api/auth', router);
ctx.logger.info('Auth routes registered at /api/auth');
},
async deactivate(ctx) {
ctx.logger.info('Auth plugin deactivated');
},
};
exports.default = plugin;
//# sourceMappingURL=index.js.map