[PR #6271] [MERGED] PM-29824: Add bulk share ciphers network layer implementation #19199

Closed
opened 2026-04-15 03:41:57 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bitwarden/android/pull/6271
Author: @SaintPatrck
Created: 12/15/2025
Status: Merged
Merged: 12/16/2025
Merged by: @SaintPatrck

Base: mainHead: PM-28471/bulk-share-ciphers


📝 Commits (1)

  • 35272fc PM-28471: Add bulk share ciphers network layer implementation

📊 Changes

7 files changed (+183 additions, -0 deletions)

View changed files

📝 network/src/main/kotlin/com/bitwarden/network/api/CiphersApi.kt (+10 -0)
network/src/main/kotlin/com/bitwarden/network/model/BulkShareCiphersJsonRequest.kt (+19 -0)
network/src/main/kotlin/com/bitwarden/network/model/CipherMiniResponseJson.kt (+66 -0)
📝 network/src/main/kotlin/com/bitwarden/network/service/CiphersService.kt (+9 -0)
📝 network/src/main/kotlin/com/bitwarden/network/service/CiphersServiceImpl.kt (+9 -0)
network/src/test/kotlin/com/bitwarden/network/model/CipherMiniResponseJsonUtil.kt (+23 -0)
📝 network/src/test/kotlin/com/bitwarden/network/service/CiphersServiceTest.kt (+47 -0)

📄 Description

🎟️ Tracking

PM-29824

📔 Objective

This PR implements the network layer foundation for bulk sharing multiple personal vault items to an organization in a single API call. The implementation adds the request/response models, API endpoint (PUT /ciphers/share), service layer methods, and corresponding unit tests, with full alignment to the server's bulk share contract.

Reminders before review

  • Contributor guidelines followed
  • All formatters and local linters executed and passed
  • Written new unit and / or integration tests where applicable
  • Protected functional changes with optionality (feature flags)
  • Used internationalization (i18n) for all UI strings
  • CI builds passed
  • Communicated to DevOps any deployment requirements
  • Updated any necessary documentation (Confluence, contributing docs) or informed the documentation team

🦮 Reviewer guidelines

  • 👍 (:+1:) or similar for great changes
  • 📝 (:memo:) or ℹ️ (:information_source:) for notes or general info
  • (:question:) for questions
  • 🤔 (:thinking:) or 💭 (:thought_balloon:) for more open inquiry that's not quite a confirmed issue and could potentially benefit from discussion
  • 🎨 (:art:) for suggestions / improvements
  • (:x:) or ⚠️ (:warning:) for more significant problems or concerns needing attention
  • 🌱 (:seedling:) or ♻️ (:recycle:) for future improvements or indications of technical debt
  • ⛏ (:pick:) for minor or nitpick changes

🔄 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/bitwarden/android/pull/6271 **Author:** [@SaintPatrck](https://github.com/SaintPatrck) **Created:** 12/15/2025 **Status:** ✅ Merged **Merged:** 12/16/2025 **Merged by:** [@SaintPatrck](https://github.com/SaintPatrck) **Base:** `main` ← **Head:** `PM-28471/bulk-share-ciphers` --- ### 📝 Commits (1) - [`35272fc`](https://github.com/bitwarden/android/commit/35272fcf2513749d72c297ade1e4c6663eea7620) PM-28471: Add bulk share ciphers network layer implementation ### 📊 Changes **7 files changed** (+183 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `network/src/main/kotlin/com/bitwarden/network/api/CiphersApi.kt` (+10 -0) ➕ `network/src/main/kotlin/com/bitwarden/network/model/BulkShareCiphersJsonRequest.kt` (+19 -0) ➕ `network/src/main/kotlin/com/bitwarden/network/model/CipherMiniResponseJson.kt` (+66 -0) 📝 `network/src/main/kotlin/com/bitwarden/network/service/CiphersService.kt` (+9 -0) 📝 `network/src/main/kotlin/com/bitwarden/network/service/CiphersServiceImpl.kt` (+9 -0) ➕ `network/src/test/kotlin/com/bitwarden/network/model/CipherMiniResponseJsonUtil.kt` (+23 -0) 📝 `network/src/test/kotlin/com/bitwarden/network/service/CiphersServiceTest.kt` (+47 -0) </details> ### 📄 Description ## 🎟️ Tracking PM-29824 ## 📔 Objective This PR implements the network layer foundation for bulk sharing multiple personal vault items to an organization in a single API call. The implementation adds the request/response models, API endpoint (`PUT /ciphers/share`), service layer methods, and corresponding unit tests, with full alignment to the [server's bulk share contract](https://github.com/bitwarden/server/blob/919d0be6d2fcd2f94fb2b538d4e738b52faba8f1/src/Api/Vault/Controllers/CiphersController.cs#L1248). ## ⏰ Reminders before review - Contributor guidelines followed - All formatters and local linters executed and passed - Written new unit and / or integration tests where applicable - Protected functional changes with optionality (feature flags) - Used internationalization (i18n) for all UI strings - CI builds passed - Communicated to DevOps any deployment requirements - Updated any necessary documentation (Confluence, contributing docs) or informed the documentation team ## 🦮 Reviewer guidelines <!-- Suggested interactions but feel free to use (or not) as you desire! --> - 👍 (`:+1:`) or similar for great changes - 📝 (`:memo:`) or ℹ️ (`:information_source:`) for notes or general info - ❓ (`:question:`) for questions - 🤔 (`:thinking:`) or 💭 (`:thought_balloon:`) for more open inquiry that's not quite a confirmed issue and could potentially benefit from discussion - 🎨 (`:art:`) for suggestions / improvements - ❌ (`:x:`) or ⚠️ (`:warning:`) for more significant problems or concerns needing attention - 🌱 (`:seedling:`) or ♻️ (`:recycle:`) for future improvements or indications of technical debt - ⛏ (`:pick:`) for minor or nitpick changes --- <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-15 03:41:57 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/android#19199