Skip to content

Commit b1a0c73

Browse files
committed
fix issue links
1 parent cb10439 commit b1a0c73

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ STAC Auth Proxy is a proxy API that mediates between the client and an internall
1414
## Installation
1515

1616
> [!NOTE]
17-
> Currently, the project is only installable by downlaoding the repository. It will eventually be available on Docker (#5) and PyPi (#30).
17+
> Currently, the project is only installable by downlaoding the repository. It will eventually be available on Docker ([#5](https://github.com/developmentseed/issues/5)) and PyPi ([#30](https://github.com/developmentseed/issues/30)).
1818
1919
This project uses [`uv`](https://docs.astral.sh/uv/) to manage project dependencies and environment.
2020

@@ -197,17 +197,17 @@ sequenceDiagram
197197

198198
#### Filters
199199

200-
| Supported | Method | Endpoint | Action | Filter | Strategy |
201-
| --------- | -------- | ---------------------------------------------- | ------ | ---------- | ------------------------------------------------------------------------------------------------------ |
202-
|| `POST` | `/search` | Read | Item | Append body with generated CQL2 query. |
203-
|| `GET` | `/search` | Read | Item | Append query params with generated CQL2 query. |
204-
| ❌ (#22) | `POST` | `/collections/` | Create | Collection | Validate body with generated CQL2 query. |
205-
| ❌ (#23) | `GET` | `/collections/{collection_id}` | Read | Collection | Append query params with generated CQL2 query. |
206-
| ❌ (#22) | `PUT` | `/collections/{collection_id}}` | Update | Collection | Fetch Collection and validate CQL2 query; merge Item with body and validate with generated CQL2 query. |
207-
| ❌ (#22) | `DELETE` | `/collections/{collection_id}` | Delete | Collection | Fetch Collectiion and validate with CQL2 query. |
208-
|| `GET` | `/collections/{collection_id}/items` | Read | Item | Append query params with generated CQL2 query. |
209-
| ❌ (#25) | `GET` | `/collections/{collection_id}/items/{item_id}` | Read | Item | Validate response against CQL2 query. |
210-
| ❌ (#21) | `POST` | `/collections/{collection_id}/items` | Create | Item | Validate body with generated CQL2 query. |
211-
| ❌ (#21) | `PUT` | `/collections/{collection_id}/items/{item_id}` | Update | Item | Fetch Item and validate CQL2 query; merge Item with body and validate with generated CQL2 query. |
212-
| ❌ (#21) | `DELETE` | `/collections/{collection_id}/items/{item_id}` | Delete | Item | Fetch Item and validate with CQL2 query. |
213-
| ❌ (#21) | `POST` | `/collections/{collection_id}/bulk_items` | Create | Item | Validate items in body with generated CQL2 query. |
200+
| Supported | Method | Endpoint | Action | Filter | Strategy |
201+
| -------------------------------------------------------- | -------- | ---------------------------------------------- | ------ | ---------- | ------------------------------------------------------------------------------------------------------ |
202+
| | `POST` | `/search` | Read | Item | Append body with generated CQL2 query. |
203+
| | `GET` | `/search` | Read | Item | Append query params with generated CQL2 query. |
204+
| ❌ ([#22](https://github.com/developmentseed/issues/22)) | `POST` | `/collections/` | Create | Collection | Validate body with generated CQL2 query. |
205+
| ❌ ([#23](https://github.com/developmentseed/issues/23)) | `GET` | `/collections/{collection_id}` | Read | Collection | Append query params with generated CQL2 query. |
206+
| ❌ ([#22](https://github.com/developmentseed/issues/22)) | `PUT` | `/collections/{collection_id}}` | Update | Collection | Fetch Collection and validate CQL2 query; merge Item with body and validate with generated CQL2 query. |
207+
| ❌ ([#22](https://github.com/developmentseed/issues/22)) | `DELETE` | `/collections/{collection_id}` | Delete | Collection | Fetch Collectiion and validate with CQL2 query. |
208+
| | `GET` | `/collections/{collection_id}/items` | Read | Item | Append query params with generated CQL2 query. |
209+
| ❌ ([#25](https://github.com/developmentseed/issues/25)) | `GET` | `/collections/{collection_id}/items/{item_id}` | Read | Item | Validate response against CQL2 query. |
210+
| ❌ ([#21](https://github.com/developmentseed/issues/21)) | `POST` | `/collections/{collection_id}/items` | Create | Item | Validate body with generated CQL2 query. |
211+
| ❌ ([#21](https://github.com/developmentseed/issues/21)) | `PUT` | `/collections/{collection_id}/items/{item_id}` | Update | Item | Fetch Item and validate CQL2 query; merge Item with body and validate with generated CQL2 query. |
212+
| ❌ ([#21](https://github.com/developmentseed/issues/21)) | `DELETE` | `/collections/{collection_id}/items/{item_id}` | Delete | Item | Fetch Item and validate with CQL2 query. |
213+
| ❌ ([#21](https://github.com/developmentseed/issues/21)) | `POST` | `/collections/{collection_id}/bulk_items` | Create | Item | Validate items in body with generated CQL2 query. |

0 commit comments

Comments
 (0)