mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-06 05:47:53 +00:00
Merge branch 'master' into patch-2
This commit is contained in:
commit
af4da8fd72
51 changed files with 2838 additions and 1518 deletions
|
|
@ -48,9 +48,9 @@ namespace PluralKit.API.Controllers
|
|||
|
||||
[HttpGet]
|
||||
[RequiresSystem]
|
||||
public async Task<ActionResult<PKSystem>> GetOwnSystem()
|
||||
public Task<ActionResult<PKSystem>> GetOwnSystem()
|
||||
{
|
||||
return Ok(_auth.CurrentSystem);
|
||||
return Task.FromResult<ActionResult<PKSystem>>(Ok(_auth.CurrentSystem));
|
||||
}
|
||||
|
||||
[HttpGet("{hid}")]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue