allieIsOkay / allieIsOkay/quantified-self-api

Add food update endpoint

オープン
#7 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
JavaScript
スター
0
フォーク
0
PR マージ指標
30日以内にマージされた PR はありません

説明

As a user,

I should be able to update a food item in the system by submitting a PATCH request to the endpoint '/api/v1/foods/:id' where :id is the ID of a food item in the system.

The body of the request should be formatted as follows:
```
{
"food": {
"name": "Banana",
"calories": 250
}
}
```
Both the name and calories are required properties for the food item.

If the food item is successfully updated, the response should carry a 200 status code and return the food object formatted as follows:
```
{
"id": 1,
"name": "Banana",
"calories": 250
}
```
If the food item could not be updated, the response should be a 400 status, and include messaging as to why the food item could not be updated:

```
{
"error": "Name is required"
}
```

- [x] Tested
- [x] Documented

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。