From: Jo-Philipp Wich Date: Tue, 22 Oct 2013 18:59:07 +0000 (+0000) Subject: luci2: wrap luci2.network.ifup and luci2.network.ifdown calls as LuCI2.network.setUp... X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci2%2Fui.git;a=commitdiff_plain;h=dce206d8191a33863ec36553f761e611d42b8762;ds=sidebyside luci2: wrap luci2.network.ifup and luci2.network.ifdown calls as LuCI2.network.setUp() and LuCI2.network.setDown() --- 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 } } }) };