[backend/masto-client] Stub /api/1/instance/translation_languages
This commit is contained in:
parent
edfa2e9c9a
commit
8a917fee71
1 changed files with 7 additions and 0 deletions
|
@ -71,4 +71,11 @@ public class InstanceController(DatabaseContext db) : ControllerBase
|
||||||
|
|
||||||
return Ok(res);
|
return Ok(res);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[HttpGet("/api/v1/instance/translation_languages")]
|
||||||
|
[ProducesResponseType(StatusCodes.Status200OK, Type = typeof(Dictionary<string, IEnumerable<string>>))]
|
||||||
|
public IActionResult GetTranslationLanguages()
|
||||||
|
{
|
||||||
|
return Ok(new Dictionary<string, IEnumerable<string>>());
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue