1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00

Fix attachments typo (#1374)

This commit is contained in:
Jens Spanier 2021-06-02 18:12:17 +02:00 committed by GitHub
parent 10e85e0181
commit 58954f161e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,8 +10,8 @@ namespace Bit.Core.Settings
public GlobalSettings()
{
BaseServiceUri = new BaseServiceUriSettings(this);
Attachment = new FileStorageSettings(this, "attchments", "attchments");
Send = new FileStorageSettings(this, "attchments/send", "attchments/send");
Attachment = new FileStorageSettings(this, "attachments", "attachments");
Send = new FileStorageSettings(this, "attachments/send", "attachments/send");
DataProtection = new DataProtectionSettings(this);
}