├── .env ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── nest-cli.json ├── package.json ├── src ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── auth │ ├── Dtos │ │ ├── LoginDto.ts │ │ └── SignUpDto.ts │ ├── auth.controller.ts │ ├── auth.module.ts │ ├── auth.schema.ts │ ├── auth.service.ts │ ├── auth.types.ts │ ├── get-user.decorator.ts │ ├── jwt.strategy.ts │ ├── role.guard.ts │ └── roles.decorator.ts └── main.ts ├── tsconfig.build.json ├── tsconfig.json └── uploads └── 1703576207348-371859521_312871814585452_972757495755697985_n.jpg /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/README.md -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/package.json -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/auth/Dtos/LoginDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/auth/Dtos/LoginDto.ts -------------------------------------------------------------------------------- /src/auth/Dtos/SignUpDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/auth/Dtos/SignUpDto.ts -------------------------------------------------------------------------------- /src/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/auth/auth.controller.ts -------------------------------------------------------------------------------- /src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/auth/auth.module.ts -------------------------------------------------------------------------------- /src/auth/auth.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/auth/auth.schema.ts -------------------------------------------------------------------------------- /src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/auth/auth.service.ts -------------------------------------------------------------------------------- /src/auth/auth.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/auth/auth.types.ts -------------------------------------------------------------------------------- /src/auth/get-user.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/auth/get-user.decorator.ts -------------------------------------------------------------------------------- /src/auth/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/auth/jwt.strategy.ts -------------------------------------------------------------------------------- /src/auth/role.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/auth/role.guard.ts -------------------------------------------------------------------------------- /src/auth/roles.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/auth/roles.decorator.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/tsconfig.json -------------------------------------------------------------------------------- /uploads/1703576207348-371859521_312871814585452_972757495755697985_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aceiny/Nest-Task-Manager/HEAD/uploads/1703576207348-371859521_312871814585452_972757495755697985_n.jpg --------------------------------------------------------------------------------