aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Server/ShiftnetBackend.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Server/ShiftnetBackend.cs')
-rw-r--r--ShiftOS.Server/ShiftnetBackend.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.Server/ShiftnetBackend.cs b/ShiftOS.Server/ShiftnetBackend.cs
index 701021d..3241298 100644
--- a/ShiftOS.Server/ShiftnetBackend.cs
+++ b/ShiftOS.Server/ShiftnetBackend.cs
@@ -13,7 +13,7 @@ namespace ShiftOS.Server
{
public static class ShiftnetBackend
{
- [MudRequest("download_start")]
+ [MudRequest("download_start", typeof(string))]
public static void StartDownload(string guid, object contents)
{
string url = contents as string;
@@ -54,7 +54,7 @@ The page you requested at was not found on this multi-user domain."
}
- [MudRequest("shiftnet_get")]
+ [MudRequest("shiftnet_get", typeof(Dictionary<string, object>))]
public static void GetPage(string guid, object contents)
{
var args = contents as Dictionary<string, object>;