Original PR: https://github.com/dani-garcia/vaultwarden/pull/2724 Author: @dani-garcia Created: 9/4/2022 Status: ✅ Merged Merged: 10/22/2022 Merged by: @dani-garcia
Base: main ← Head: diesel2
main
diesel2
8409b31
36 files changed (+1269 additions, -1272 deletions)
📝 Cargo.lock (+170 -161) 📝 Cargo.toml (+7 -7) 📝 src/api/admin.rs (+79 -89) 📝 src/api/core/accounts.rs (+54 -53) 📝 src/api/core/ciphers.rs (+151 -157) 📝 src/api/core/emergency_access.rs (+93 -107) 📝 src/api/core/folders.rs (+12 -12) 📝 src/api/core/mod.rs (+2 -2) 📝 src/api/core/organizations.rs (+232 -233) 📝 src/api/core/sends.rs (+55 -50) 📝 src/api/core/two_factor/authenticator.rs (+7 -7) 📝 src/api/core/two_factor/duo.rs (+9 -9) 📝 src/api/core/two_factor/email.rs (+15 -15) 📝 src/api/core/two_factor/mod.rs (+18 -18) 📝 src/api/core/two_factor/webauthn.rs (+24 -23) 📝 src/api/core/two_factor/yubikey.rs (+6 -6) 📝 src/api/identity.rs (+20 -20) 📝 src/auth.rs (+13 -9) 📝 src/db/mod.rs (+26 -19) 📝 src/db/models/attachment.rs (+13 -13)
Cargo.lock
Cargo.toml
src/api/admin.rs
src/api/core/accounts.rs
src/api/core/ciphers.rs
src/api/core/emergency_access.rs
src/api/core/folders.rs
src/api/core/mod.rs
src/api/core/organizations.rs
src/api/core/sends.rs
src/api/core/two_factor/authenticator.rs
src/api/core/two_factor/duo.rs
src/api/core/two_factor/email.rs
src/api/core/two_factor/mod.rs
src/api/core/two_factor/webauthn.rs
src/api/core/two_factor/yubikey.rs
src/api/identity.rs
src/auth.rs
src/db/mod.rs
src/db/models/attachment.rs
...and 16 more files
Big diff but it's mostly changing &conn to &mut conn all over the codebase.
&conn
&mut conn
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
No dependencies set.
The note is not visible to the blocked user.
📋 Pull Request Information
Original PR: https://github.com/dani-garcia/vaultwarden/pull/2724
Author: @dani-garcia
Created: 9/4/2022
Status: ✅ Merged
Merged: 10/22/2022
Merged by: @dani-garcia
Base:
main← Head:diesel2📝 Commits (1)
8409b31Update to diesel2📊 Changes
36 files changed (+1269 additions, -1272 deletions)
View changed files
📝
Cargo.lock(+170 -161)📝
Cargo.toml(+7 -7)📝
src/api/admin.rs(+79 -89)📝
src/api/core/accounts.rs(+54 -53)📝
src/api/core/ciphers.rs(+151 -157)📝
src/api/core/emergency_access.rs(+93 -107)📝
src/api/core/folders.rs(+12 -12)📝
src/api/core/mod.rs(+2 -2)📝
src/api/core/organizations.rs(+232 -233)📝
src/api/core/sends.rs(+55 -50)📝
src/api/core/two_factor/authenticator.rs(+7 -7)📝
src/api/core/two_factor/duo.rs(+9 -9)📝
src/api/core/two_factor/email.rs(+15 -15)📝
src/api/core/two_factor/mod.rs(+18 -18)📝
src/api/core/two_factor/webauthn.rs(+24 -23)📝
src/api/core/two_factor/yubikey.rs(+6 -6)📝
src/api/identity.rs(+20 -20)📝
src/auth.rs(+13 -9)📝
src/db/mod.rs(+26 -19)📝
src/db/models/attachment.rs(+13 -13)...and 16 more files
📄 Description
Big diff but it's mostly changing
&connto&mut connall over the codebase.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.