summaryrefslogtreecommitdiffstats
path: root/api/WhatApi/Endpoints/GetUploadPageEndpoint.cs
blob: ea14819d6809316d04acfede883ce86d49b4e36a (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 GetMapPage() {
        return Content(TemplateFulfiller.WebUploadPage(), "text/html");
    }
}