fix: Support routes with desk in it

This commit is contained in:
Suraj Shetty 2020-12-20 22:42:21 +05:30
parent e331d4db3e
commit df2d13b296

View file

@ -255,6 +255,10 @@ def resolve_path(path):
if path.startswith("app"):
path = "app"
# to keep backward compatibility
if path.startswith("desk"):
path = "app"
return path
def resolve_from_map(path):