## Overview Implement the endpoint that returns the currently authenticated user profile inside `backend/contrib/`. ## Location All work must be inside `backend/contrib/src/auth/`. ## Acceptance Criteria - [ ] `GET /auth/me` endpoint implemented, protected by `JwtAuthGuard` - [ ] Uses `@CurrentUser()` decorator to get user from request - [ ] Returns full user object excluding `password` and `refreshToken` - [ ] Returns 401 if token is missing or invalid
Overview
Implement the endpoint that returns the currently authenticated user profile inside
backend/contrib/.Location
All work must be inside
backend/contrib/src/auth/.Acceptance Criteria
GET /auth/meendpoint implemented, protected byJwtAuthGuard@CurrentUser()decorator to get user from requestpasswordandrefreshToken