[PR #6916] Add support for archiving items #8755

Open
opened 2026-04-16 12:36:41 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dani-garcia/vaultwarden/pull/6916
Author: @matt-aaron
Created: 3/9/2026
Status: 🔄 Open

Base: mainHead: archiving


📝 Commits (2)

  • c596d85 Add archiving
  • cbb8345 Update Diesel macros and remove unnecessary SUPPORTED_FEATURE_FLAG

📊 Changes

12 files changed (+282 additions, -7 deletions)

View changed files

migrations/mysql/2026-03-09-005927_add_archives/down.sql (+1 -0)
migrations/mysql/2026-03-09-005927_add_archives/up.sql (+10 -0)
migrations/postgresql/2026-03-09-005927-add_archives/down.sql (+1 -0)
migrations/postgresql/2026-03-09-005927-add_archives/up.sql (+8 -0)
migrations/sqlite/2026-03-09-005927-add_archives/down.sql (+1 -0)
migrations/sqlite/2026-03-09-005927-add_archives/up.sql (+8 -0)
📝 src/api/core/ciphers.rs (+121 -3)
📝 src/api/core/mod.rs (+2 -2)
src/db/models/archive.rs (+97 -0)
📝 src/db/models/cipher.rs (+20 -2)
📝 src/db/models/mod.rs (+2 -0)
📝 src/db/schema.rs (+11 -0)

📄 Description

Adds support for archiving items: https://github.com/dani-garcia/vaultwarden/discussions/6372

I'm new to the codebase, so let me know if I have missed anything. Happy to apply any feedback you may have. Thank you!


🔄 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/dani-garcia/vaultwarden/pull/6916 **Author:** [@matt-aaron](https://github.com/matt-aaron) **Created:** 3/9/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `archiving` --- ### 📝 Commits (2) - [`c596d85`](https://github.com/dani-garcia/vaultwarden/commit/c596d855cb871074f771ede003b1ac48a62d2ffc) Add archiving - [`cbb8345`](https://github.com/dani-garcia/vaultwarden/commit/cbb8345ea1eb8de7326f23524b17c446ca05f35e) Update Diesel macros and remove unnecessary SUPPORTED_FEATURE_FLAG ### 📊 Changes **12 files changed** (+282 additions, -7 deletions) <details> <summary>View changed files</summary> ➕ `migrations/mysql/2026-03-09-005927_add_archives/down.sql` (+1 -0) ➕ `migrations/mysql/2026-03-09-005927_add_archives/up.sql` (+10 -0) ➕ `migrations/postgresql/2026-03-09-005927-add_archives/down.sql` (+1 -0) ➕ `migrations/postgresql/2026-03-09-005927-add_archives/up.sql` (+8 -0) ➕ `migrations/sqlite/2026-03-09-005927-add_archives/down.sql` (+1 -0) ➕ `migrations/sqlite/2026-03-09-005927-add_archives/up.sql` (+8 -0) 📝 `src/api/core/ciphers.rs` (+121 -3) 📝 `src/api/core/mod.rs` (+2 -2) ➕ `src/db/models/archive.rs` (+97 -0) 📝 `src/db/models/cipher.rs` (+20 -2) 📝 `src/db/models/mod.rs` (+2 -0) 📝 `src/db/schema.rs` (+11 -0) </details> ### 📄 Description Adds support for archiving items: https://github.com/dani-garcia/vaultwarden/discussions/6372 I'm new to the codebase, so let me know if I have missed anything. Happy to apply any feedback you may have. Thank you! --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-16 12:36:41 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/vaultwarden#8755