Deterministically order plugins, create cross-plugin call mechanism
[WebThing.git] / plugins / Session.cs
index bec316f..559f250 100644 (file)
@@ -49,4 +49,9 @@ public class Session : WebThingPlugin {
         Options[SessionName] = String.Join(" ", Uris.ToArray());
         SaveConfig();
     }
+
+    public void DeleteSession(string SessionName) {
+        Options.Remove(SessionName);
+        SaveConfig();
+    }
 }