Re-implemented everything using ASP.NET. Changed some requests to use JSON instead of FORM data. Some work towards deleting the FIXMEGlobal instance. Auth is missing, XSRF does not work correctly.
7 lines
202 B
C#
7 lines
202 B
C#
namespace Duplicati.WebserverCore.Dto;
|
|
|
|
/// <summary>
|
|
/// Represents the update db path input DTO.
|
|
/// </summary>
|
|
/// <param name="path">The path</param>
|
|
public record UpdateDbPathInputDto(string path); |