summaryrefslogtreecommitdiff
path: root/WebInterface/src/js/modules/networking/commands/login/createServer.js
diff options
context:
space:
mode:
Diffstat (limited to 'WebInterface/src/js/modules/networking/commands/login/createServer.js')
-rw-r--r--WebInterface/src/js/modules/networking/commands/login/createServer.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/WebInterface/src/js/modules/networking/commands/login/createServer.js b/WebInterface/src/js/modules/networking/commands/login/createServer.js
new file mode 100644
index 0000000..78b2a1b
--- /dev/null
+++ b/WebInterface/src/js/modules/networking/commands/login/createServer.js
@@ -0,0 +1,23 @@
+import Command from '../_command';
+
+/**
+ * Handles creation of Servers
+ */
+export default class CreateServer extends Command {
+ /**
+ * Registers interface for communication with other objects
+ * @param {Interface} iface
+ */
+ constructor(iface) {
+ super(iface);
+ this.registerPublic('createServer', 'createServer');
+ this.refreshing = false;
+ }
+
+ /**
+ * TODO:
+ */
+ createServer() {
+
+ }
+}