@mercury-labs/auth
Version:
Mercury framework auth library. It supports local auth, jwt with both bearer token and cookie, basic auth.
10 lines • 476 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.InjectPasswordHasher = void 0;
const common_1 = require("@nestjs/common");
const password_hasher_service_1 = require("../services/password-hasher.service");
const InjectPasswordHasher = () => {
return (0, common_1.Inject)(password_hasher_service_1.AUTH_PASSWORD_HASHER);
};
exports.InjectPasswordHasher = InjectPasswordHasher;
//# sourceMappingURL=inject-password-hasher.decorator.js.map
;