Skip to content
Snippets Groups Projects
Commit f8e0fb3a authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- forgot to add the app setting to dashboard controller

parent 25aceeba
No related branches found
No related tags found
No related merge requests found
......@@ -188,6 +188,7 @@ namespace ClientServer.Controllers
TestAssetFilesUploadDirName = AppConfiguration.TestAssetFilesUploadDirName,
UserAssetFilesUploadDirName = AppConfiguration.UserAssetFilesUploadDirName,
OnlySecureFlaggedCookies = AppConfiguration.OnlySecureFlaggedCookies,
MaxUploadFileSizeInByte = AppConfiguration.MaxUploadFileSizeInByte,
};
await
......@@ -467,6 +468,7 @@ namespace ClientServer.Controllers
public string TestAssetFilesUploadDirName { get; set; }
public string UserAssetFilesUploadDirName { get; set; }
public bool OnlySecureFlaggedCookies { get; set; }
public long MaxUploadFileSizeInByte { get; set; }
// public string SystemSalt { get; set; } //don't show to frontend?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment