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

namespace WhatApi.Endpoints;

public class GetMapPageEndpoint : BaseEndpoint
{

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