feat: complete release readiness work

- consolidate API ownership and remove dead vendor code

- add Stripe billing, learning paths, and public CV hardening

- add migration, recovery, security, audit, and browser gates
This commit is contained in:
cesnimda
2026-07-31 16:54:16 +02:00
parent a23c3dfc97
commit ce76046a29
1634 changed files with 6889 additions and 135429 deletions
@@ -209,6 +209,8 @@ public sealed class JobApplicationsEndpointBehaviorTests
var result = await controller.Create(request, CancellationToken.None);
Assert.NotNull(result);
var created = Assert.IsType<CreatedAtActionResult>(result.Result);
Assert.IsType<JobApplicationDto>(created.Value);
var saved = await db.JobApplications.FirstAsync();
Assert.Equal(60000m, saved.SalaryMin);
Assert.Equal(70000m, saved.SalaryMax);