mirror of
https://git.asonix.dog/asonix/pict-rs.git
synced 2024-11-28 12:31:00 +00:00
Add more JSON to readme
This commit is contained in:
parent
7c0a407568
commit
bc8b19d8b6
1 changed files with 17 additions and 0 deletions
17
README.md
17
README.md
|
@ -134,10 +134,27 @@ A secure API key can be generated by any password generator.
|
||||||
files associated with the query.
|
files associated with the query.
|
||||||
- `?file=asdf.png` purge by filename
|
- `?file=asdf.png` purge by filename
|
||||||
- `?alias=asdf.png` purge by alias
|
- `?alias=asdf.png` purge by alias
|
||||||
|
|
||||||
|
This endpoint returns the following JSON
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"msg": "ok",
|
||||||
|
"aliases": ["asdf.png"]
|
||||||
|
}
|
||||||
|
```
|
||||||
- `GET /internal/aliases?...` Get the aliases for a file by it's filename or alias
|
- `GET /internal/aliases?...` Get the aliases for a file by it's filename or alias
|
||||||
- `?file={filename}` get aliases by filename
|
- `?file={filename}` get aliases by filename
|
||||||
- `?alias={alias}` get aliases by alias
|
- `?alias={alias}` get aliases by alias
|
||||||
|
|
||||||
|
This endpiont returns the same JSON as the purge endpoint
|
||||||
- `GET /internal/filename?alias={alias}` Get the filename for a file by it's alias
|
- `GET /internal/filename?alias={alias}` Get the filename for a file by it's alias
|
||||||
|
This endpoint returns the following JSON
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"msg": "ok",
|
||||||
|
"filename": "asdf.png"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
Loading…
Reference in a new issue