[PR #361] [MERGED] Api logout route #8585

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

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/361
Author: @matthinc
Created: 7/19/2022
Status: Merged
Merged: 7/19/2022
Merged by: @alextran1502

Base: mainHead: dev/api-logout


📝 Commits (2)

  • 9e78c3d Add logout route that deletes http only cookies
  • b6dae8c Rebuild API

📊 Changes

13 files changed (+334 additions, -1 deletions)

View changed files

📝 mobile/openapi/.openapi-generator/FILES (+3 -0)
📝 mobile/openapi/README.md (+2 -0)
📝 mobile/openapi/doc/AuthenticationApi.md (+38 -0)
mobile/openapi/doc/LogoutResponseDto.md (+15 -0)
📝 mobile/openapi/lib/api.dart (+1 -0)
📝 mobile/openapi/lib/api/authentication_api.dart (+41 -0)
📝 mobile/openapi/lib/api_client.dart (+2 -0)
mobile/openapi/lib/model/logout_response_dto.dart (+111 -0)
mobile/openapi/test/logout_response_dto_test.dart (+27 -0)
📝 server/apps/immich/src/api-v1/auth/auth.controller.ts (+14 -0)
server/apps/immich/src/api-v1/auth/response-dto/logout-response.dto.ts (+10 -0)
📝 server/immich-openapi-specs.json (+1 -1)
📝 web/src/api/open-api/api.ts (+69 -0)

📄 Description

Required by #357


🔄 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/361 **Author:** [@matthinc](https://github.com/matthinc) **Created:** 7/19/2022 **Status:** ✅ Merged **Merged:** 7/19/2022 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `dev/api-logout` --- ### 📝 Commits (2) - [`9e78c3d`](https://github.com/immich-app/immich/commit/9e78c3d508da40c42fafc132c68408676715a706) Add logout route that deletes http only cookies - [`b6dae8c`](https://github.com/immich-app/immich/commit/b6dae8c8c089f48a0eb3130f23b86d130bc9841f) Rebuild API ### 📊 Changes **13 files changed** (+334 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `mobile/openapi/.openapi-generator/FILES` (+3 -0) 📝 `mobile/openapi/README.md` (+2 -0) 📝 `mobile/openapi/doc/AuthenticationApi.md` (+38 -0) ➕ `mobile/openapi/doc/LogoutResponseDto.md` (+15 -0) 📝 `mobile/openapi/lib/api.dart` (+1 -0) 📝 `mobile/openapi/lib/api/authentication_api.dart` (+41 -0) 📝 `mobile/openapi/lib/api_client.dart` (+2 -0) ➕ `mobile/openapi/lib/model/logout_response_dto.dart` (+111 -0) ➕ `mobile/openapi/test/logout_response_dto_test.dart` (+27 -0) 📝 `server/apps/immich/src/api-v1/auth/auth.controller.ts` (+14 -0) ➕ `server/apps/immich/src/api-v1/auth/response-dto/logout-response.dto.ts` (+10 -0) 📝 `server/immich-openapi-specs.json` (+1 -1) 📝 `web/src/api/open-api/api.ts` (+69 -0) </details> ### 📄 Description Required by #357 --- <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:49:51 +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#8585