mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
fix(server): rename android-links api endpoint to apk-links (#18790)
* remove auth from endpoint and change android to apk * add auth back to `apk-links`
This commit is contained in:
parent
e2defbc49a
commit
3a5fed99e1
6 changed files with 14 additions and 14 deletions
|
|
@ -5275,9 +5275,9 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"/server/android-links": {
|
||||
"/server/apk-links": {
|
||||
"get": {
|
||||
"operationId": "getAndroidLinks",
|
||||
"operationId": "getApkLinks",
|
||||
"parameters": [],
|
||||
"responses": {
|
||||
"200": {
|
||||
|
|
|
|||
|
|
@ -2874,11 +2874,11 @@ export function getAboutInfo(opts?: Oazapfts.RequestOpts) {
|
|||
...opts
|
||||
}));
|
||||
}
|
||||
export function getAndroidLinks(opts?: Oazapfts.RequestOpts) {
|
||||
export function getApkLinks(opts?: Oazapfts.RequestOpts) {
|
||||
return oazapfts.ok(oazapfts.fetchJson<{
|
||||
status: 200;
|
||||
data: ServerApkLinksDto;
|
||||
}>("/server/android-links", {
|
||||
}>("/server/apk-links", {
|
||||
...opts
|
||||
}));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue