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
{
"firstName": "yomom",
"lastName": "yomom",
"street": "yomom",
"postcode": "yomom",
"city": "yomom",
"phone": "yomom"
"firstName": "Jan",
"lastName": "Klattenhoff",
"street": "Pirolweg 17",
"postcode": "27777",
"city": "Gandakersee",
"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();
}
}
}