R# cleanup

This commit is contained in:
JustArchi
2018-10-17 20:22:55 +02:00
parent 50cb19e6e6
commit f4a96c681e
20 changed files with 86 additions and 75 deletions

View File

@@ -30,11 +30,11 @@ namespace ArchiSteamFarm.IPC.Controllers.Api {
[Route("Api/Command")]
public sealed class CommandController : ArchiController {
/// <summary>
/// Executes a command.
/// Executes a command.
/// </summary>
/// <remarks>
/// This API endpoint is supposed to be entirely replaced by ASF actions available under /Api/ASF/{action} and /Api/Bot/{bot}/{action}.
/// You should use "given bot" commands when executing this endpoint, omitting targets of the command will cause the command to be executed on first defined bot
/// This API endpoint is supposed to be entirely replaced by ASF actions available under /Api/ASF/{action} and /Api/Bot/{bot}/{action}.
/// You should use "given bot" commands when executing this endpoint, omitting targets of the command will cause the command to be executed on first defined bot
/// </remarks>
[HttpPost("{command:required}")]
[ProducesResponseType(typeof(GenericResponse<string>), 200)]