https://github.com/jpb06/dev-friends-backend
Backend for DevFriends workshop
https://github.com/jpb06/dev-friends-backend
nestjs
Last synced: about 1 month ago
JSON representation
Backend for DevFriends workshop
- Host: GitHub
- URL: https://github.com/jpb06/dev-friends-backend
- Owner: jpb06
- Created: 2021-02-27T16:28:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-01-02T12:19:50.000Z (over 1 year ago)
- Last Synced: 2025-11-27T10:36:04.613Z (8 months ago)
- Topics: nestjs
- Language: TypeScript
- Homepage: https://devfriends-backend.fly.dev
- Size: 633 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Devfriends workshop backend
Backend for [Devfriends workshop](https://github.com/jpb06/dev-friends-workshop) repo.
## ⚡ Data model

## ⚡ Routes exposed
Here is a quick summary. You can get more details from the [api swagger](https://devfriends-backend.fly.dev).
| Route | Verb | Description |
| --------------------- | ------- | ----------------------------------------------------------------------- |
| 💥 /squads | 🔹 GET | Retrieves all squads |
| 💥 /squads/{id}/devs | 🔹 GET | Retrieves all devs belonging to a squad |
| 💥 /devs | 🔹 GET | Retrieves all devs |
| 💥 /devs/by-squad | 🔸 POST | Retrieves devs belonging to a list of squads passed in the request body |
| 💥 /devs/change-squad | 🔸 POST | Moves a developer to another squad |