-
- Downloads
feat: Added Backend support for Internships. tested: adding, reading. Not final
parent
befe1af5
No related branches found
No related tags found
This commit is part of merge request !5. Comments created here will be created in the context of that merge request.
Showing
- package.json 2 additions, 1 deletionpackage.json
- src/app.module.ts 7 additions, 1 deletionsrc/app.module.ts
- src/internships/dao/internships.dao.ts 81 additions, 0 deletionssrc/internships/dao/internships.dao.ts
- src/internships/dto/create-internship.dto.ts 21 additions, 0 deletionssrc/internships/dto/create-internship.dto.ts
- src/internships/dto/internship.dto.ts 28 additions, 0 deletionssrc/internships/dto/internship.dto.ts
- src/internships/dto/nested-create/address.dto.ts 19 additions, 0 deletionssrc/internships/dto/nested-create/address.dto.ts
- src/internships/dto/nested-create/affectation.dto.ts 46 additions, 0 deletionssrc/internships/dto/nested-create/affectation.dto.ts
- src/internships/dto/nested-create/company.dto.ts 33 additions, 0 deletionssrc/internships/dto/nested-create/company.dto.ts
- src/internships/dto/nested-create/compensation.dto.ts 15 additions, 0 deletionssrc/internships/dto/nested-create/compensation.dto.ts
- src/internships/dto/nested-create/information.dto.ts 42 additions, 0 deletionssrc/internships/dto/nested-create/information.dto.ts
- src/internships/dto/nested-create/student.dto.ts 48 additions, 0 deletionssrc/internships/dto/nested-create/student.dto.ts
- src/internships/dto/nested-create/tracking.dto.ts 11 additions, 0 deletionssrc/internships/dto/nested-create/tracking.dto.ts
- src/internships/entities/internship.entity.ts 12 additions, 0 deletionssrc/internships/entities/internship.entity.ts
- src/internships/entities/nested-entities/address.entity.ts 10 additions, 0 deletionssrc/internships/entities/nested-entities/address.entity.ts
- src/internships/entities/nested-entities/affectation.entity.ts 16 additions, 0 deletions...nternships/entities/nested-entities/affectation.entity.ts
- src/internships/entities/nested-entities/company.entity.ts 13 additions, 0 deletionssrc/internships/entities/nested-entities/company.entity.ts
- src/internships/entities/nested-entities/compensation.entity.ts 9 additions, 0 deletions...ternships/entities/nested-entities/compensation.entity.ts
- src/internships/entities/nested-entities/information.entity.ts 16 additions, 0 deletions...nternships/entities/nested-entities/information.entity.ts
- src/internships/entities/nested-entities/student.entity.ts 15 additions, 0 deletionssrc/internships/entities/nested-entities/student.entity.ts
- src/internships/entities/nested-entities/tracking.entity.ts 8 additions, 0 deletionssrc/internships/entities/nested-entities/tracking.entity.ts
... | @@ -14,7 +14,7 @@ | ... | @@ -14,7 +14,7 @@ |
"build": "nest build", | "build": "nest build", | ||
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", | "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", | ||
"start": "nest start", | "start": "nest start", | ||
"start:dev": "nest start --watch", | "start:dev": "cross-env NODE_ENV=dev nest start --watch", | ||
"start:debug": "nest start --debug --watch", | "start:debug": "nest start --debug --watch", | ||
"start:prod": "node dist/main", | "start:prod": "node dist/main", | ||
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | ||
... | @@ -47,6 +47,7 @@ | ... | @@ -47,6 +47,7 @@ |
"@types/supertest": "^2.0.11", | "@types/supertest": "^2.0.11", | ||
"@typescript-eslint/eslint-plugin": "^5.0.0", | "@typescript-eslint/eslint-plugin": "^5.0.0", | ||
"@typescript-eslint/parser": "^5.0.0", | "@typescript-eslint/parser": "^5.0.0", | ||
"cross-env": "^7.0.3", | |||
"eslint": "^8.0.1", | "eslint": "^8.0.1", | ||
"eslint-config-prettier": "^8.3.0", | "eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-prettier": "^4.0.0", | "eslint-plugin-prettier": "^4.0.0", | ||
... | ... |
src/internships/dao/internships.dao.ts
0 → 100644
src/internships/dto/create-internship.dto.ts
0 → 100644
src/internships/dto/internship.dto.ts
0 → 100644
Please register or sign in to comment