feat: Implement add employee to project route (SCRUM-2) #32

Merged
jank merged 8 commits from feature/add-employee-to-project into main 2024-10-23 08:39:26 +00:00
2 changed files with 7 additions and 7 deletions
Showing only changes of commit 928920a359 - Show all commits

@ -3,10 +3,10 @@ Authorization: Bearer {{auth_token}}
Content-Type: application/json Content-Type: application/json
{ {
"firstName": "yomom", "firstName": "Jan",
"lastName": "yomom", "lastName": "Klattenhoff",
"street": "yomom", "street": "Pirolweg 17",
"postcode": "yomom", "postcode": "27777",
"city": "yomom", "city": "Gandakersee",
"phone": "yomom" "phone": "017684984816"
jank marked this conversation as resolved Outdated
Outdated
Review

@ptran Dont use yomom as test user

@ptran Dont use yomom as test user
} }

@ -77,4 +77,4 @@ class AddEmployeeToProjectActionIntegrationTest {
return Objects.requireNonNull(response.getBody()).get("access_token").toString(); return Objects.requireNonNull(response.getBody()).get("access_token").toString();
} }
} }