Browse Source

fix(server): Asset controller does not load all endpoint (#3245)

Alex 2 years ago
parent
commit
6387e38e27
1 changed files with 1 additions and 1 deletions
  1. 1 1
      server/src/immich/app.module.ts

+ 1 - 1
server/src/immich/app.module.ts

@@ -39,11 +39,11 @@ import {
     TypeOrmModule.forFeature([AssetEntity, ExifEntity]),
     TypeOrmModule.forFeature([AssetEntity, ExifEntity]),
   ],
   ],
   controllers: [
   controllers: [
+    AssetController,
     AssetControllerV1,
     AssetControllerV1,
     AppController,
     AppController,
     AlbumController,
     AlbumController,
     APIKeyController,
     APIKeyController,
-    AssetController,
     AuthController,
     AuthController,
     JobController,
     JobController,
     OAuthController,
     OAuthController,