diff --git a/EliteAPI/Features/Bot/Accounts/LinkAccount/Endpoint.cs b/EliteAPI/Features/Bot/Accounts/LinkAccount/Endpoint.cs index f44a9f5..f9eb1b3 100644 --- a/EliteAPI/Features/Bot/Accounts/LinkAccount/Endpoint.cs +++ b/EliteAPI/Features/Bot/Accounts/LinkAccount/Endpoint.cs @@ -16,6 +16,8 @@ public override void Configure() { AllowAnonymous(); // Auth done in endpoint filter Version(0); + Description(x => x.Accepts()); + Summary(s => { s.Summary = "Link Account"; }); diff --git a/EliteAPI/Features/Bot/Accounts/MakePrimary/Endpoint.cs b/EliteAPI/Features/Bot/Accounts/MakePrimary/Endpoint.cs index 2cae11c..98b6534 100644 --- a/EliteAPI/Features/Bot/Accounts/MakePrimary/Endpoint.cs +++ b/EliteAPI/Features/Bot/Accounts/MakePrimary/Endpoint.cs @@ -16,6 +16,8 @@ public override void Configure() { AllowAnonymous(); // Auth done in endpoint filter Version(0); + Description(x => x.Accepts()); + Summary(s => { s.Summary = "Make Primary Account"; }); diff --git a/EliteAPI/Features/Bot/Accounts/RefreshPurchases/Endpoint.cs b/EliteAPI/Features/Bot/Accounts/RefreshPurchases/Endpoint.cs index 7677cc3..1f58fa3 100644 --- a/EliteAPI/Features/Bot/Accounts/RefreshPurchases/Endpoint.cs +++ b/EliteAPI/Features/Bot/Accounts/RefreshPurchases/Endpoint.cs @@ -14,6 +14,8 @@ public override void Configure() { Options(o => o.AddEndpointFilter()); AllowAnonymous(); // Auth done in endpoint filter Version(0); + + Description(x => x.Accepts()); Summary(s => { s.Summary = "Refresh User Purchases"; diff --git a/EliteAPI/Features/Bot/Accounts/UnlinkAccount/Endpoint.cs b/EliteAPI/Features/Bot/Accounts/UnlinkAccount/Endpoint.cs index 9efe943..e73385e 100644 --- a/EliteAPI/Features/Bot/Accounts/UnlinkAccount/Endpoint.cs +++ b/EliteAPI/Features/Bot/Accounts/UnlinkAccount/Endpoint.cs @@ -15,6 +15,8 @@ public override void Configure() { Options(o => o.AddEndpointFilter()); AllowAnonymous(); // Auth done in endpoint filter Version(0); + + Description(x => x.Accepts()); Summary(s => { s.Summary = "Unlink Account";