Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Umbraco.Cms.Api.Management/OpenApi.json
Original file line number Diff line number Diff line change
Expand Up @@ -43891,7 +43891,7 @@
},
"maxFileSize": {
"type": "integer",
"format": "int32",
"format": "int64",
"nullable": true
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ public class TemporaryFileConfigurationResponseModel

public string[] AllowedUploadedFileExtensions { get; set; } = Array.Empty<string>();

public int? MaxFileSize { get; set; }
public long? MaxFileSize { get; set; }
}
7 changes: 1 addition & 6 deletions src/Umbraco.Core/Configuration/Models/RuntimeSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,10 @@ public class RuntimeSettings
[DefaultValue(RuntimeMode.BackofficeDevelopment)]
public RuntimeMode Mode { get; set; } = RuntimeMode.BackofficeDevelopment;

/// <summary>
/// Gets or sets a value for the maximum query string length.
/// </summary>
public int? MaxQueryStringLength { get; set; }

/// <summary>
/// Gets or sets a value for the maximum request length in kb.
/// </summary>
public int? MaxRequestLength { get; set; }
public long? MaxRequestLength { get; set; }

/// <summary>
/// Gets or sets the timespan temporary files are kept, before they are removed by a background task.
Expand Down
Loading