Merge pull request #1112 from imachug/merger-0
MergerSite: Add actionFileList and actionDirList proxy
This commit is contained in:
commit
99dd5d5f63
1 changed files with 6 additions and 0 deletions
|
@ -141,6 +141,12 @@ class UiWebsocketPlugin(object):
|
|||
else:
|
||||
return func(to, inner_path, *args, **kwargs)
|
||||
|
||||
def actionFileList(self, to, inner_path, *args, **kwargs):
|
||||
return self.mergerFuncWrapper("actionFileList", to, inner_path, *args, **kwargs)
|
||||
|
||||
def actionDirList(self, to, inner_path, *args, **kwargs):
|
||||
return self.mergerFuncWrapper("actionDirList", to, inner_path, *args, **kwargs)
|
||||
|
||||
def actionFileGet(self, to, inner_path, *args, **kwargs):
|
||||
return self.mergerFuncWrapper("actionFileGet", to, inner_path, *args, **kwargs)
|
||||
|
||||
|
|
Loading…
Reference in a new issue