1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05: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

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);
}