Files
portfolio2023/build/app/Middleware/SilentAuth.js
T
Tutur33 977386f605 build
2023-12-06 22:34:07 +01:00

10 lines
277 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class SilentAuthMiddleware {
async handle({ auth }, next) {
await auth.check();
await next();
}
}
exports.default = SilentAuthMiddleware;
//# sourceMappingURL=SilentAuth.js.map