summaryrefslogtreecommitdiff
path: root/luci2
diff options
context:
space:
mode:
Diffstat (limited to 'luci2')
-rw-r--r--luci2/htdocs/luci2/luci2.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/luci2/htdocs/luci2/luci2.js b/luci2/htdocs/luci2/luci2.js
index ffa58ea..d2ad812 100644
--- a/luci2/htdocs/luci2/luci2.js
+++ b/luci2/htdocs/luci2/luci2.js
@@ -1013,6 +1013,21 @@ function LuCI2()
method: 'nslookup',
params: [ 'data' ],
expect: { '': { code: -1 } }
+ }),
+
+
+ setUp: _luci2.rpc.declare({
+ object: 'luci2.network',
+ method: 'ifup',
+ params: [ 'data' ],
+ expect: { '': { code: -1 } }
+ }),
+
+ setDown: _luci2.rpc.declare({
+ object: 'luci2.network',
+ method: 'ifdown',
+ params: [ 'data' ],
+ expect: { '': { code: -1 } }
})
};