-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
The endpoints for groups, banks, and goals have small typos in their response messages.
Ex:
{{host}}/api/banks/{{testGroupName}}/{{testBankName}}
{
"statusCode": 404,
"message": "Resource not found!",
"details": "The piggy bank \"testBank\" could not be found!"
}
SHOULD BE:
...
"details": "The piggy bank testBank could not be found!"
...
OR
{{host}}/api/groups/{{testGroupName}} (when the group isn't found)
{
"statusCode": 404,
"message": "Resource not found!",
"details": "testGroupcould not be found! Try again!"
}
SHOULD BE:
...
"details": "testGroup could not be found! Try again!"
...
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request