[PR #1220] [MERGED] refactor(server): imports and repository tokens #8958

Closed
opened 2026-02-05 13:56:05 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/1220
Author: @jrasm91
Created: 12/30/2022
Status: Merged
Merged: 12/30/2022
Merged by: @alextran1502

Base: mainHead: refactor/imports


📝 Commits (7)

  • 105ca1c refactor: entity imports
  • 1b09426 refactor: rename user repository token
  • c7d25d6 chore: merge
  • 3a0fc17 chore: merge imports
  • 10fda58 refactor: rename album repository token
  • 58bb769 refactor: rename asset repository token
  • 2c9c215 refactor: rename tag repository token

📊 Changes

81 files changed (+130 additions, -151 deletions)

View changed files

📝 server/apps/cli/src/app.module.ts (+1 -2)
📝 server/apps/cli/src/commands/reset-admin-password.command.ts (+1 -1)
📝 server/apps/immich/src/api-v1/album/album-repository.ts (+2 -4)
📝 server/apps/immich/src/api-v1/album/album.module.ts (+3 -5)
📝 server/apps/immich/src/api-v1/album/album.service.spec.ts (+1 -1)
📝 server/apps/immich/src/api-v1/album/album.service.ts (+5 -5)
📝 server/apps/immich/src/api-v1/album/response-dto/album-response.dto.ts (+1 -1)
📝 server/apps/immich/src/api-v1/asset/asset-repository.ts (+4 -4)
📝 server/apps/immich/src/api-v1/asset/asset.module.ts (+3 -3)
📝 server/apps/immich/src/api-v1/asset/asset.service.spec.ts (+1 -1)
📝 server/apps/immich/src/api-v1/asset/asset.service.ts (+5 -7)
📝 server/apps/immich/src/api-v1/asset/dto/create-asset.dto.ts (+1 -1)
📝 server/apps/immich/src/api-v1/asset/response-dto/asset-response.dto.ts (+1 -1)
📝 server/apps/immich/src/api-v1/asset/response-dto/exif-response.dto.ts (+1 -1)
📝 server/apps/immich/src/api-v1/asset/response-dto/smart-info-response.dto.ts (+1 -1)
📝 server/apps/immich/src/api-v1/auth/auth.service.spec.ts (+1 -1)
📝 server/apps/immich/src/api-v1/auth/auth.service.ts (+3 -3)
📝 server/apps/immich/src/api-v1/auth/response-dto/admin-signup-response.dto.ts (+1 -1)
📝 server/apps/immich/src/api-v1/auth/response-dto/login-response.dto.ts (+1 -1)
📝 server/apps/immich/src/api-v1/communication/communication.gateway.ts (+1 -1)

...and 61 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/immich-app/immich/pull/1220 **Author:** [@jrasm91](https://github.com/jrasm91) **Created:** 12/30/2022 **Status:** ✅ Merged **Merged:** 12/30/2022 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `refactor/imports` --- ### 📝 Commits (7) - [`105ca1c`](https://github.com/immich-app/immich/commit/105ca1cf0a38bb8e9819593d1ce6ae473cd36986) refactor: entity imports - [`1b09426`](https://github.com/immich-app/immich/commit/1b09426e38faa00ff60ac48c0e6789f9cc574ddd) refactor: rename user repository token - [`c7d25d6`](https://github.com/immich-app/immich/commit/c7d25d6ebbbe368dc08c14eaa511f9738adbbc8e) chore: merge - [`3a0fc17`](https://github.com/immich-app/immich/commit/3a0fc17727beaefba0cf85c5cf8efe39b12f6b6e) chore: merge imports - [`10fda58`](https://github.com/immich-app/immich/commit/10fda5896f55a545fe4e16393a2555df36cea3ca) refactor: rename album repository token - [`58bb769`](https://github.com/immich-app/immich/commit/58bb769a82cc7fec77237601c7fcd20b51843e43) refactor: rename asset repository token - [`2c9c215`](https://github.com/immich-app/immich/commit/2c9c21515f340366d628af17dcfd818e066d0ce1) refactor: rename tag repository token ### 📊 Changes **81 files changed** (+130 additions, -151 deletions) <details> <summary>View changed files</summary> 📝 `server/apps/cli/src/app.module.ts` (+1 -2) 📝 `server/apps/cli/src/commands/reset-admin-password.command.ts` (+1 -1) 📝 `server/apps/immich/src/api-v1/album/album-repository.ts` (+2 -4) 📝 `server/apps/immich/src/api-v1/album/album.module.ts` (+3 -5) 📝 `server/apps/immich/src/api-v1/album/album.service.spec.ts` (+1 -1) 📝 `server/apps/immich/src/api-v1/album/album.service.ts` (+5 -5) 📝 `server/apps/immich/src/api-v1/album/response-dto/album-response.dto.ts` (+1 -1) 📝 `server/apps/immich/src/api-v1/asset/asset-repository.ts` (+4 -4) 📝 `server/apps/immich/src/api-v1/asset/asset.module.ts` (+3 -3) 📝 `server/apps/immich/src/api-v1/asset/asset.service.spec.ts` (+1 -1) 📝 `server/apps/immich/src/api-v1/asset/asset.service.ts` (+5 -7) 📝 `server/apps/immich/src/api-v1/asset/dto/create-asset.dto.ts` (+1 -1) 📝 `server/apps/immich/src/api-v1/asset/response-dto/asset-response.dto.ts` (+1 -1) 📝 `server/apps/immich/src/api-v1/asset/response-dto/exif-response.dto.ts` (+1 -1) 📝 `server/apps/immich/src/api-v1/asset/response-dto/smart-info-response.dto.ts` (+1 -1) 📝 `server/apps/immich/src/api-v1/auth/auth.service.spec.ts` (+1 -1) 📝 `server/apps/immich/src/api-v1/auth/auth.service.ts` (+3 -3) 📝 `server/apps/immich/src/api-v1/auth/response-dto/admin-signup-response.dto.ts` (+1 -1) 📝 `server/apps/immich/src/api-v1/auth/response-dto/login-response.dto.ts` (+1 -1) 📝 `server/apps/immich/src/api-v1/communication/communication.gateway.ts` (+1 -1) _...and 61 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 13:56:05 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#8958