diff options
| author | Michael VanOverbeek <[email protected]> | 2017-02-15 21:30:58 +0000 |
|---|---|---|
| committer | Michael VanOverbeek <[email protected]> | 2017-02-15 21:31:03 +0000 |
| commit | 91f97a65b2c6d1fad3a211a6739a49d9908f69a2 (patch) | |
| tree | ae91161012ad62f8d35377369557bff14cd18718 /ShiftOS.Server/ShiftnetBackend.cs | |
| parent | 9729d2ba5998351849b0fe7e755a3176de655bab (diff) | |
| download | shiftos_thereturn-91f97a65b2c6d1fad3a211a6739a49d9908f69a2.tar.gz shiftos_thereturn-91f97a65b2c6d1fad3a211a6739a49d9908f69a2.tar.bz2 shiftos_thereturn-91f97a65b2c6d1fad3a211a6739a49d9908f69a2.zip | |
whoa mud refactoring
Diffstat (limited to 'ShiftOS.Server/ShiftnetBackend.cs')
| -rw-r--r-- | ShiftOS.Server/ShiftnetBackend.cs | 4 |
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>; |
