mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-27 15:07:45 +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 8 additions and 8 deletions
BIN
mobile/openapi/README.md
generated
BIN
mobile/openapi/README.md
generated
Binary file not shown.
BIN
mobile/openapi/lib/api/server_api.dart
generated
BIN
mobile/openapi/lib/api/server_api.dart
generated
Binary file not shown.
|
|
@ -5275,9 +5275,9 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"/server/android-links": {
|
"/server/apk-links": {
|
||||||
"get": {
|
"get": {
|
||||||
"operationId": "getAndroidLinks",
|
"operationId": "getApkLinks",
|
||||||
"parameters": [],
|
"parameters": [],
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
|
|
|
||||||
|
|
@ -2874,11 +2874,11 @@ export function getAboutInfo(opts?: Oazapfts.RequestOpts) {
|
||||||
...opts
|
...opts
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
export function getAndroidLinks(opts?: Oazapfts.RequestOpts) {
|
export function getApkLinks(opts?: Oazapfts.RequestOpts) {
|
||||||
return oazapfts.ok(oazapfts.fetchJson<{
|
return oazapfts.ok(oazapfts.fetchJson<{
|
||||||
status: 200;
|
status: 200;
|
||||||
data: ServerApkLinksDto;
|
data: ServerApkLinksDto;
|
||||||
}>("/server/android-links", {
|
}>("/server/apk-links", {
|
||||||
...opts
|
...opts
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -35,10 +35,10 @@ export class ServerController {
|
||||||
return this.service.getAboutInfo();
|
return this.service.getAboutInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('android-links')
|
@Get('apk-links')
|
||||||
@Authenticated()
|
@Authenticated()
|
||||||
getAndroidLinks(): ServerApkLinksDto {
|
getApkLinks(): ServerApkLinksDto {
|
||||||
return this.service.getAndroidLinks();
|
return this.service.getApkLinks();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('storage')
|
@Get('storage')
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@ export class ServerService extends BaseService {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
getAndroidLinks(): ServerApkLinksDto {
|
getApkLinks(): ServerApkLinksDto {
|
||||||
const baseUrl = `https://github.com/immich-app/immich/releases/download/v${serverVersion.toString()}`;
|
const baseUrl = `https://github.com/immich-app/immich/releases/download/v${serverVersion.toString()}`;
|
||||||
return {
|
return {
|
||||||
arm64v8a: `${baseUrl}/app-arm64-v8a-release.apk`,
|
arm64v8a: `${baseUrl}/app-arm64-v8a-release.apk`,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue