[PR #2023] [MERGED] refactor(server): jobs #9333

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

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/2023
Author: @jrasm91
Created: 3/20/2023
Status: Merged
Merged: 3/20/2023
Merged by: @alextran1502

Base: mainHead: refactor/jobs


📝 Commits (5)

📊 Changes

68 files changed (+1351 additions, -903 deletions)

View changed files

📝 mobile/openapi/.openapi-generator/FILES (+6 -6)
📝 mobile/openapi/README.md (+2 -2)
📝 mobile/openapi/doc/AllJobStatusResponseDto.md (+8 -5)
📝 mobile/openapi/doc/JobApi.md (+6 -7)
📝 mobile/openapi/doc/JobCommandDto.md (+1 -1)
📝 mobile/openapi/doc/JobCountsDto.md (+1 -1)
📝 mobile/openapi/doc/JobName.md (+1 -1)
📝 mobile/openapi/lib/api.dart (+2 -2)
📝 mobile/openapi/lib/api/job_api.dart (+4 -12)
📝 mobile/openapi/lib/api_client.dart (+4 -4)
📝 mobile/openapi/lib/api_helper.dart (+2 -2)
📝 mobile/openapi/lib/model/all_job_status_response_dto.dart (+60 -36)
📝 mobile/openapi/lib/model/job_command.dart (+6 -3)
📝 mobile/openapi/lib/model/job_command_dto.dart (+8 -8)
📝 mobile/openapi/lib/model/job_counts_dto.dart (+20 -20)
mobile/openapi/lib/model/job_id.dart (+0 -94)
mobile/openapi/lib/model/job_name.dart (+103 -0)
📝 mobile/openapi/test/all_job_status_response_dto_test.dart (+25 -10)
📝 mobile/openapi/test/job_api_test.dart (+1 -1)
📝 mobile/openapi/test/job_command_dto_test.dart (+2 -2)

...and 48 more files

📄 Description

  • Move jobs to the domain
  • Load assets for jobs in the background
  • Separate object tagging from clip embeddings
  • Move asset queries with "without x" to the domain
  • Rename some stuff

image


🔄 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/2023 **Author:** [@jrasm91](https://github.com/jrasm91) **Created:** 3/20/2023 **Status:** ✅ Merged **Merged:** 3/20/2023 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `refactor/jobs` --- ### 📝 Commits (5) - [`5addd35`](https://github.com/immich-app/immich/commit/5addd354d20b6585157e2a4cb9db7d8c142b9cfa) refactor: job to domain - [`1a18846`](https://github.com/immich-app/immich/commit/1a188466953537607f0c17f64ec1b24864dca355) chore: regenerate open api - [`2d69807`](https://github.com/immich-app/immich/commit/2d69807b90308cda6e89adfb8f4bf6318b648e8c) chore: tests - [`ebe5060`](https://github.com/immich-app/immich/commit/ebe5060344ab0a4974ca00004063eaa4aefc5717) fix: missing breaks - [`b2a04b1`](https://github.com/immich-app/immich/commit/b2a04b1e8a339ec3a0a9187ddfeedbfc44d69c5b) fix: get asset with missing exif data ### 📊 Changes **68 files changed** (+1351 additions, -903 deletions) <details> <summary>View changed files</summary> 📝 `mobile/openapi/.openapi-generator/FILES` (+6 -6) 📝 `mobile/openapi/README.md` (+2 -2) 📝 `mobile/openapi/doc/AllJobStatusResponseDto.md` (+8 -5) 📝 `mobile/openapi/doc/JobApi.md` (+6 -7) 📝 `mobile/openapi/doc/JobCommandDto.md` (+1 -1) 📝 `mobile/openapi/doc/JobCountsDto.md` (+1 -1) 📝 `mobile/openapi/doc/JobName.md` (+1 -1) 📝 `mobile/openapi/lib/api.dart` (+2 -2) 📝 `mobile/openapi/lib/api/job_api.dart` (+4 -12) 📝 `mobile/openapi/lib/api_client.dart` (+4 -4) 📝 `mobile/openapi/lib/api_helper.dart` (+2 -2) 📝 `mobile/openapi/lib/model/all_job_status_response_dto.dart` (+60 -36) 📝 `mobile/openapi/lib/model/job_command.dart` (+6 -3) 📝 `mobile/openapi/lib/model/job_command_dto.dart` (+8 -8) 📝 `mobile/openapi/lib/model/job_counts_dto.dart` (+20 -20) ➖ `mobile/openapi/lib/model/job_id.dart` (+0 -94) ➕ `mobile/openapi/lib/model/job_name.dart` (+103 -0) 📝 `mobile/openapi/test/all_job_status_response_dto_test.dart` (+25 -10) 📝 `mobile/openapi/test/job_api_test.dart` (+1 -1) 📝 `mobile/openapi/test/job_command_dto_test.dart` (+2 -2) _...and 48 more files_ </details> ### 📄 Description - Move jobs to the domain - Load assets for jobs in the background - Separate object tagging from clip embeddings - Move asset queries with "without x" to the domain - Rename some stuff ![image](https://user-images.githubusercontent.com/4334196/226252224-1c3c9c0a-0a9d-4d36-95fc-f036da9abc25.png) --- <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 14:02:48 +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#9333