fix multiuser/merger plugins interaction

This commit is contained in:
caryoscelus 2022-02-07 15:26:19 +00:00
parent ba0662327b
commit 09b73e2222
1 changed files with 3 additions and 0 deletions

View File

@ -27,6 +27,9 @@ class UiRequestPlugin(object):
self.user_manager = UserManager.user_manager
super(UiRequestPlugin, self).__init__(*args, **kwargs)
def parsePath(self, path):
return super(UiRequestPlugin, self).parsePath(path)
# Create new user and inject user welcome message if necessary
# Return: Html body also containing the injection
def actionWrapper(self, path, extra_headers=None):