blob: 230c8b3f3d7c6db9b5540b1d2826326877c36631 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using WhatApi.Templates;
namespace WhatApi.Endpoints;
public class GetTermsPageEndpoint : BaseEndpoint
{
[AllowAnonymous]
[HttpGet("~/terms")]
public ActionResult Handle() {
return Content(TemplateFulfiller.WebTermsPage(), "text/html");
}
}
|