18 lines
283 B
Python
18 lines
283 B
Python
|
import CryptoBoxPlugin
|
||
|
|
||
|
|
||
|
class volume_details(CryptoBoxPlugin.CryptoBoxPlugin):
|
||
|
|
||
|
pluginCapabilities = [ "volume" ]
|
||
|
requestAuth = False
|
||
|
|
||
|
|
||
|
def doAction(self):
|
||
|
## all variables are already set somewhere else
|
||
|
return "volume_details"
|
||
|
|
||
|
|
||
|
def getStatus(self):
|
||
|
return "no status"
|
||
|
|