Ignore:
Timestamp:
Jul 31, 2023, 4:06:13 PM (16 months ago)
Author:
alloc
Message:

25_30_44

  • Got rid (mostly) of custom JSON serialization
  • Some code cleanup
File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/SteamLoginApi.cs

    r454 r455  
    1 using System;
    21using System.Net;
    3 using Platform.Steam;
     2using JetBrains.Annotations;
    43using Webserver;
    54using Webserver.UrlHandlers;
    65using Webserver.WebAPI;
    76
    8 namespace AllocsFixes {
     7namespace AllocsFixes.Web {
     8        [UsedImplicitly]
    99        public class SteamLoginApi : AbsWebAPI {
    1010                public override int DefaultPermissionLevel () => 2000;
     
    1515                private const string steamLoginUrl = "loginsteam";
    1616               
    17                 public SteamLoginApi (Web _parentWeb) : base(_parentWeb) {
     17                public SteamLoginApi (Webserver.Web _parentWeb) : base(_parentWeb) {
    1818                }
    1919
     
    4343                       
    4444                        if (subpath.StartsWith (steamLoginUrl)) {
    45                                 var absoluteUrl = _context.Request.Url.AbsolutePath;
     45                                string absoluteUrl = _context.Request.Url.AbsolutePath;
    4646                                absoluteUrl = absoluteUrl.Substring (0, absoluteUrl.Length - _context.RequestPath.Length);
    4747                                SessionHandler.HandleSteamLogin (_context, $"{absoluteUrl}{steamOpenIdVerifyUrl}");
Note: See TracChangeset for help on using the changeset viewer.