Add fileList, dirList as CORS commands
This commit is contained in:
parent
e874730679
commit
c2f5a12ce1
1 changed files with 6 additions and 0 deletions
|
@ -52,6 +52,12 @@ class UiWebsocketPlugin(object):
|
||||||
def actionFileGet(self, to, inner_path, *args, **kwargs):
|
def actionFileGet(self, to, inner_path, *args, **kwargs):
|
||||||
return self.corsFuncWrapper("actionFileGet", to, inner_path, *args, **kwargs)
|
return self.corsFuncWrapper("actionFileGet", to, inner_path, *args, **kwargs)
|
||||||
|
|
||||||
|
def actionFileList(self, to, inner_path, *args, **kwargs):
|
||||||
|
return self.corsFuncWrapper("actionFileList", to, inner_path, *args, **kwargs)
|
||||||
|
|
||||||
|
def actionDirList(self, to, inner_path, *args, **kwargs):
|
||||||
|
return self.corsFuncWrapper("actionDirList", to, inner_path, *args, **kwargs)
|
||||||
|
|
||||||
def actionFileRules(self, to, inner_path, *args, **kwargs):
|
def actionFileRules(self, to, inner_path, *args, **kwargs):
|
||||||
return self.corsFuncWrapper("actionFileRules", to, inner_path, *args, **kwargs)
|
return self.corsFuncWrapper("actionFileRules", to, inner_path, *args, **kwargs)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue