mirror of
				https://github.com/dani-garcia/vaultwarden.git
				synced 2025-10-31 05:41:13 +00:00 
			
		
		
		
	Hide org ciphers from unconfirmed users (Showed deciption error)
This commit is contained in:
		
					parent
					
						
							
								dde7c0d99b
							
						
					
				
			
			
				commit
				
					
						2f892cb866
					
				
			
		
					 1 changed files with 4 additions and 2 deletions
				
			
		|  | @ -3,7 +3,7 @@ use serde_json::Value as JsonValue; | |||
| 
 | ||||
| use uuid::Uuid; | ||||
| 
 | ||||
| use super::{User, Organization, Attachment, FolderCipher, CollectionCipher, UserOrgType}; | ||||
| use super::{User, Organization, Attachment, FolderCipher, CollectionCipher, UserOrgType, UserOrgStatus}; | ||||
| 
 | ||||
| #[derive(Debug, Identifiable, Queryable, Insertable, Associations)] | ||||
| #[table_name = "ciphers"] | ||||
|  | @ -266,7 +266,9 @@ impl Cipher { | |||
|         ciphers::table | ||||
|         .left_join(users_organizations::table.on( | ||||
|             ciphers::organization_uuid.eq(users_organizations::org_uuid.nullable()).and( | ||||
|                 users_organizations::user_uuid.eq(user_uuid) | ||||
|                 users_organizations::user_uuid.eq(user_uuid).and( | ||||
|                     users_organizations::status.eq(UserOrgStatus::Confirmed as i32) | ||||
|                 ) | ||||
|             ) | ||||
|         )) | ||||
|         .left_join(ciphers_collections::table) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue