refactor(nestjs): authentication

This commit is contained in:
Ahmed Bouhuolia
2025-04-02 15:50:00 +02:00
parent f11b09cd87
commit 18017d25d5
25 changed files with 1650 additions and 30 deletions

View File

@@ -2,6 +2,7 @@
import {
Body,
Controller,
Get,
Param,
Post,
Request,
@@ -87,4 +88,9 @@ export class AuthController {
) {
return this.authApp.resetPassword(token, password);
}
@Get('/meta')
meta() {
return this.authApp.getAuthMeta();
}
}