Ignore:
Timestamp:
Feb 26, 2024, 6:25:48 PM (9 months ago)
Author:
alloc
Message:

22.0.1.1 WebServer release

  • Moved API error codes from string literals to enum
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TFP-WebServer/WebServer/src/WebAPI/APIs/Permissions/CommandPermissions.cs

    r434 r486  
    5858
    5959                        if (string.IsNullOrEmpty (id)) {
    60                                 SendEmptyResponse (_context, HttpStatusCode.BadRequest, _jsonInputData, "NO_COMMAND");
     60                                SendEmptyResponse (_context, HttpStatusCode.BadRequest, _jsonInputData, EApiErrorCode.NO_COMMAND);
    6161                                return;
    6262                        }
     
    6464                        IConsoleCommand cmd = SdtdConsole.Instance.GetCommand (id);
    6565                        if (cmd == null) {
    66                                 SendEmptyResponse (_context, HttpStatusCode.NotFound, _jsonInputData, "INVALID_COMMAND");
     66                                SendEmptyResponse (_context, HttpStatusCode.NotFound, _jsonInputData, EApiErrorCode.UNKNOWN_COMMAND);
    6767                                return;
    6868                        }
    6969
    7070                        if (!JsonCommons.TryGetJsonField (_jsonInput, propertyPermissionLevel, out int permissionLevel)) {
    71                                 SendEmptyResponse (_context, HttpStatusCode.BadRequest, _jsonInputData, "NO_OR_INVALID_PERMISSION_LEVEL");
     71                                SendEmptyResponse (_context, HttpStatusCode.BadRequest, _jsonInputData, EApiErrorCode.NO_OR_INVALID_PERMISSION_LEVEL);
    7272                                return;
    7373                        }
Note: See TracChangeset for help on using the changeset viewer.