- Timestamp:
- Jul 21, 2015, 9:51:32 PM (9 years ago)
- Location:
- binary-improvements/MapRendering/Web/Handlers
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/MapRendering/Web/Handlers/ItemIconHandler.cs
r242 r244 7 7 using UnityEngine; 8 8 9 namespace AllocsFixes.NetConnections.Servers.Web 9 namespace AllocsFixes.NetConnections.Servers.Web.Handlers 10 10 { 11 11 public class ItemIconHandler : PathHandler … … 16 16 private bool loaded = false; 17 17 18 public ItemIconHandler (string staticPart, bool logMissingFiles ) {18 public ItemIconHandler (string staticPart, bool logMissingFiles, string moduleName = null) : base(moduleName) { 19 19 this.staticPart = staticPart; 20 20 this.logMissingFiles = logMissingFiles; 21 21 } 22 22 23 public override void HandleRequest (HttpListenerRequest req, HttpListenerResponse resp, HttpListenerBasicIdentity user) {23 public override void HandleRequest (HttpListenerRequest req, HttpListenerResponse resp, WebConnection user, int permissionLevel) { 24 24 if (!loaded) { 25 25 if (!LoadIcons ()) {
Note:
See TracChangeset
for help on using the changeset viewer.