summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/api/api-v1-3.md26
-rw-r--r--docs/developer.md3
2 files changed, 15 insertions, 14 deletions
diff --git a/docs/api/api-v1-3.md b/docs/api/api-v1-3.md
index 4ecd22b95..98e09b622 100644
--- a/docs/api/api-v1-3.md
+++ b/docs/api/api-v1-3.md
@@ -354,7 +354,7 @@ Deletes a feed with the id feedId and all of its items
#### Rename a feed
-* **Status**: Implemented in 1.807
+* **Status**: Implemented in News 1.807
* **Method**: POST
* **Route**: /feeds/{feedId}/rename
* **Parameters**:
@@ -524,7 +524,7 @@ This is used to stay up to date.
* **Returns**: nothing
#### Mark multiple items as read
-* **Status**: Implemented in 1.2
+* **Status**: Implemented in API 1.2
* **Method**: POST
* **Route**: /items/read/multiple
* **Parameters**:
@@ -545,7 +545,7 @@ This is used to stay up to date.
* **Returns**: nothing
#### Mark multiple items as unread
-* **Status**: Implemented in 1.2
+* **Status**: Implemented in API 1.2
* **Method**: POST
* **Route**: /items/unread/multiple
* **Parameters**:
@@ -557,7 +557,7 @@ This is used to stay up to date.
* **Returns**: nothing
#### Mark an item as starred
-* **Status**: Implemented in 1.3
+* **Status**: Implemented in API 1.3
* **Method**: POST
* **Route**: /items/{itemId}/star
* **Parameters**: none
@@ -566,7 +566,7 @@ This is used to stay up to date.
* **Returns**: nothing
#### Mark multiple items as starred
-* **Status**: Implemented in 1.3
+* **Status**: Implemented in API 1.3
* **Method**: POST
* **Route**: /items/star/multiple
* **Parameters**:
@@ -578,7 +578,7 @@ This is used to stay up to date.
* **Returns**: nothing
#### Mark an item as unstarred
-* **Status**: Implemented in 1.3
+* **Status**: Implemented in API 1.3
* **Method**: POST
* **Route**: /items/{itemId}/unstar
* **Parameters**: none
@@ -587,7 +587,7 @@ This is used to stay up to date.
* **Returns**: nothing
#### Mark multiple items as unstarred
-* **Status**: Implemented in 1.3
+* **Status**: Implemented in API 1.3
* **Method**: POST
* **Route**: /items/unstar/multiple
* **Parameters**:
@@ -632,7 +632,7 @@ This [implementation in Python](https://github.com/nextcloud/news-updater) shoul
#### Trigger cleanup before update
This is used to clean up the database. It deletes folders and feeds that are marked for deletion
-* **Status**: Implemented in 1.601
+* **Status**: Implemented in News 1.601
* **Authentication**: Requires admin user
* **Method**: GET
* **Route**: /cleanup/before-update
@@ -644,7 +644,7 @@ This is used to clean up the database. It deletes folders and feeds that are mar
#### Get feed ids and usernames for all feeds
-* **Status**: Implemented in 1.203
+* **Status**: Implemented in News 1.203
* **Authentication**: Requires admin user
* **Method**: GET
* **Route**: /feeds/all
@@ -668,7 +668,7 @@ This is used to clean up the database. It deletes folders and feeds that are mar
#### Trigger a feed update
-* **Status**: Implemented in 1.601
+* **Status**: Implemented in News 1.601
* **Authentication**: Requires admin user
* **Method**: GET
* **Route**: /feeds/update
@@ -690,7 +690,7 @@ This is used to clean up the database. It deletes folders and feeds that are mar
#### Trigger cleanup after update
This is used to clean up the database. It removes old read articles which are not starred
-* **Status**: Implemented in 1.601
+* **Status**: Implemented in News 1.601
* **Authentication**: Requires admin user
* **Method**: GET
* **Route**: /cleanup/after-update
@@ -721,7 +721,7 @@ This API can be used to display warnings and errors in your client if the web ap
#### Get the status
-* **Status**: Implemented in 5.2.4
+* **Status**: Implemented in News 5.2.4
* **Method**: GET
* **Route**: /status
* **Parameters**: none
@@ -757,7 +757,7 @@ DEPRECATED: This API is deprecated, use the Nextcloud APIs instead.
#### Get the status
-* **Status**: Implemented in 6.0.5
+* **Status**: Implemented in News 6.0.5
* **Method**: GET
* **Route**: /user
* **Parameters**: none
diff --git a/docs/developer.md b/docs/developer.md
index 8a6bdd411..7e290228e 100644
--- a/docs/developer.md
+++ b/docs/developer.md
@@ -11,7 +11,8 @@ News offers an API that can be used by clients to synchronize with the server.
There are two API declarations, so far only V1 has been fully implemented.
Work on V2 has started with low priority.
-- [API-V1](api/api-v1.md)
+- [API-V1.2](api/api-v1-2.md)
+- [API-V1.3](api/api-v1-3.md)
- [API-V2](api/api-v2.md)
## Coding Style Guidelines