mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-07-16 08:54:01 -05:00
[PR #7346] 2026.6.0 send support #32950
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/dani-garcia/vaultwarden/pull/7346
Author: @Timshel
Created: 6/17/2026
Status: 🔄 Open
Base:
main← Head:fix/send📝 Commits (2)
64d943b2026.6.0 send support8450af2Prevent creating and editing a Send with email verification📊 Changes
6 files changed (+351 additions, -18 deletions)
View changed files
➕
playwright/tests/send.spec.ts(+72 -0)📝
src/api/core/sends.rs(+54 -11)📝
src/api/identity.rs(+19 -2)📝
src/auth.rs(+15 -0)➕
src/auth/send.rs(+172 -0)📝
src/error.rs(+19 -5)📄 Description
With
2026.6.0the client now start by requiring an access_token.Some remarks:
Added
auth/send.rssince I though thatauth.rswas already long enough.Added the
silentproperty to theErrorto be useErrorKind::Jsonwithout logging the error.Probably could be injected in some place like the
Error::emptybut wanted to keep modifications to a minimum.While adding another set of optional values to
ConnectDataI wondered if it could be converted to anEnumwith a value for eachgrant_type? I think it would be cleaner, but maybe I'm missing something ?🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.