Add pronouns

This commit is contained in:
Laura Hausmann 2022-11-20 17:12:43 +01:00
parent 46cca10f2e
commit b66cf75f23
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -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";
}