moved python modules to separate packages below src/ renamed "hook" to "event" to avoid confusion
18 lines
298 B
Python
18 lines
298 B
Python
import cryptobox.plugins.base
|
|
|
|
class disks(cryptobox.plugins.base.CryptoBoxPlugin):
|
|
|
|
pluginCapabilities = [ "system" ]
|
|
pluginVisibility = [ "menu" ]
|
|
requestAuth = False
|
|
rank = 10
|
|
|
|
def doAction(self):
|
|
self.cbox.reReadContainerList()
|
|
return "disks"
|
|
|
|
|
|
def getStatus(self):
|
|
return "TODO"
|
|
|
|
|