You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-08-10 23:22:22 +02: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:
@@ -35,10 +35,10 @@ export class ServerController {
|
||||
return this.service.getAboutInfo();
|
||||
}
|
||||
|
||||
@Get('android-links')
|
||||
@Get('apk-links')
|
||||
@Authenticated()
|
||||
getAndroidLinks(): ServerApkLinksDto {
|
||||
return this.service.getAndroidLinks();
|
||||
getApkLinks(): ServerApkLinksDto {
|
||||
return this.service.getApkLinks();
|
||||
}
|
||||
|
||||
@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()}`;
|
||||
return {
|
||||
arm64v8a: `${baseUrl}/app-arm64-v8a-release.apk`,
|
||||
|
Reference in New Issue
Block a user