summaryrefslogtreecommitdiffstats
path: root/api/WhatApi/Endpoints/GetUploadPageEndpoint.cs
blob: 309fa49c67c30a51a30a77447c7998045f47c629 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using WhatApi.Templates;

namespace WhatApi.Endpoints;

public class GetUploadPageEndpoint : BaseEndpoint
{

    [HttpGet("~/upload")]
    public ActionResult Handle() {
        return Content(TemplateFulfiller.WebUploadPage(), "text/html");
    }
}