mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-05-08 21:12:04 +02:00
Update Diesel macros and remove unnecessary SUPPORTED_FEATURE_FLAG
This commit is contained in:
parent
c2779fa036
commit
b3b47eb352
2 changed files with 3 additions and 2 deletions
|
|
@ -1485,8 +1485,6 @@ pub const SUPPORTED_FEATURE_FLAGS: &[&str] = &[
|
|||
"cxp-export-mobile",
|
||||
// Platform Team
|
||||
"pm-30529-webauthn-related-origins",
|
||||
// Innovation Team
|
||||
"pm-19148-innovation-archive",
|
||||
];
|
||||
|
||||
impl Config {
|
||||
|
|
|
|||
|
|
@ -349,6 +349,8 @@ table! {
|
|||
}
|
||||
}
|
||||
|
||||
joinable!(archives -> users (user_uuid));
|
||||
joinable!(archives -> ciphers (cipher_uuid));
|
||||
joinable!(attachments -> ciphers (cipher_uuid));
|
||||
joinable!(ciphers -> organizations (organization_uuid));
|
||||
joinable!(ciphers -> users (user_uuid));
|
||||
|
|
@ -380,6 +382,7 @@ joinable!(auth_requests -> users (user_uuid));
|
|||
joinable!(sso_users -> users (user_uuid));
|
||||
|
||||
allow_tables_to_appear_in_same_query!(
|
||||
archives,
|
||||
attachments,
|
||||
ciphers,
|
||||
ciphers_collections,
|
||||
|
|
|
|||
Loading…
Reference in a new issue