feat(api): add Discord OAuth2 login

This commit is contained in:
spiral 2022-04-07 09:26:12 -04:00
parent 6295a1a561
commit fb8249705d
No known key found for this signature in database
GPG key ID: 244A11E4B0BCF40E
2 changed files with 66 additions and 0 deletions

View file

@ -3,4 +3,6 @@ namespace PluralKit.API;
public class ApiConfig
{
public int Port { get; set; } = 5000;
public string? ClientId { get; set; }
public string? ClientSecret { get; set; }
}