Skip to content

Commit c8128b4

Browse files
authored
Merge pull request #450 from nanotaboada/fix/readme-api-table-and-features
fix(readme): correct PUT status and update features section
2 parents 388c72d + 3e036e3 commit c8128b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Proof of Concept for a RESTful API built with .NET 10 (LTS) and ASP.NET Core. Ma
1919
- 🏗️ **Clean layered architecture** - Repository pattern, dependency injection, and async operations throughout
2020
- 📚 **Interactive API exploration** - Swagger UI documentation with health monitoring endpoints
2121
-**Performance optimizations** - In-memory caching, rate limiting, and efficient database queries
22-
- 🧪 **High test coverage** - xUnit tests with automated reporting to Codecov and SonarCloud
22+
- **Input Validation** - FluentValidation rule sets with CRUD-scoped constraints and RFC 7807 error responses
2323
- 🐳 **Full containerization** - Multi-stage Docker builds with Docker Compose orchestration
2424
- 🔄 **Complete CI/CD pipeline** - Automated testing, code quality checks, Docker publishing, and GitHub releases
2525

@@ -147,7 +147,7 @@ Interactive API documentation is available via Swagger UI at `https://localhost:
147147
| `GET` | `/players/{id:Guid}` | Get player by ID *(requires authentication)* | `200 OK` |
148148
| `GET` | `/players/squadNumber/{squadNumber:int}` | Get player by squad number | `200 OK` |
149149
| `POST` | `/players` | Create new player | `201 Created` |
150-
| `PUT` | `/players/squadNumber/{squadNumber:int}` | Update player by squad number | `200 OK` |
150+
| `PUT` | `/players/squadNumber/{squadNumber:int}` | Update player by squad number | `204 No Content` |
151151
| `DELETE` | `/players/squadNumber/{squadNumber:int}` | Remove player by squad number | `204 No Content` |
152152
| `GET` | `/health` | Health check | `200 OK` |
153153

0 commit comments

Comments
 (0)