luci-base: reintroduce accidentally lost isCreateable() function

Fixes: FS#2976
Fixes: 711f75927 ("luci-base: harmonize JS class naming and requesting")
Ref: https://bugs.openwrt.org/index.php?do=details&task_id=2976
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2020-04-06 20:49:44 +02:00
parent 77158e2a96
commit 249b5bb8c6

View file

@ -2305,6 +2305,24 @@ Protocol = baseclass.extend(/** @lends LuCI.network.Protocol.prototype */ {
return null; return null;
}, },
/**
* Check function for the protocol handler if a new interface is createable.
*
* This function should be overwritten by protocol specific subclasses.
*
* @abstract
*
* @param {string} ifname
* The name of the interface to be created.
*
* @returns {Promise<void>}
* Returns a promise resolving if new interface is createable, else
* rejects with an error message string.
*/
isCreateable: function(ifname) {
return Promise.resolve(null);
},
/** /**
* Checks whether the protocol functionality is installed. * Checks whether the protocol functionality is installed.
* *