The Feedbacktool is an API written in Swift to save Feedback to a DB. The app runs on heroku under Feedbacktool
GET, POST, DELETE, UPDATE
To post a feedback to the API.
{
"id": "1",
"project_id": 1,
"feedback": "You are so awesome ❤️",
"os": "iOS",
"stars": 5
}
Gets all feedback from the API.
localhost:8080/feedback
Show a specific feedback identified by its id.
localhost:8080/feedback/1
GET, POST, DELETE, UPDATE
To post a project to the API.
{
"id": "1",
"name": "Tool"
}
Gets all project from the API.
localhost:8080/project
Show all feedbacks related to the project. Append the project id
localhost:8080/project/1