Ignore:
Timestamp:
Jul 28, 2023, 8:42:10 PM (16 months ago)
Author:
alloc
Message:

24_29_43
Switched over to vanilla Web infrastructure

Location:
binary-improvements/MapRendering/API
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/API/GetPlayersOnline.cs

    r453 r454  
    11using System.Collections.Generic;
    2 using System.Net;
    32using AllocsFixes.JSON;
    43using AllocsFixes.PersistentData;
     4using Webserver;
     5using Webserver.WebAPI;
    56
    6 namespace AllocsFixes.NetConnections.Servers.Web.API {
    7         public class GetPlayersOnline : WebAPI {
    8                 public override void HandleRequest (HttpListenerRequest _req, HttpListenerResponse _resp, WebConnection _user,
    9                         int _permissionLevel) {
     7namespace AllocsFixes.WebAPIs {
     8        public class GetPlayersOnline : AbsWebAPI {
     9                public override void HandleRequest (RequestContext _context) {
    1010                        JSONArray players = new JSONArray ();
    1111
     
    4444                        }
    4545
    46                         WriteJSON (_resp, players);
     46                        LegacyApiHelper.WriteJSON (_context.Response, players);
    4747                }
    4848        }
Note: See TracChangeset for help on using the changeset viewer.