diff --git a/zotan.pw-web/well-known/Pronouns.cs b/zotan.pw-web/well-known/Pronouns.cs new file mode 100644 index 0000000..dd4359d --- /dev/null +++ b/zotan.pw-web/well-known/Pronouns.cs @@ -0,0 +1,9 @@ +using Microsoft.AspNetCore.Mvc; + +namespace zotanpw_web.well_known; + +[ApiController, Route("/.well-known/pronouns")] +public class Pronouns : Controller { + [HttpGet] + public string Get() => "she/they\n"; +}