43
|
def url(self, id: int=None, subpath: str='', params:dict=None, skip_id=False) -> str:
|
43
|
def url(self, id: int=None, subpath: str='', params:dict=None, skip_id=False) -> str:
|
47
|
If your mount point is /someitems, then this will return /someitems or /someitems/4 if id not None
|
46
|
If your mount point is /someitems, then this will return /someitems or /someitems/4 if id not None
|
48
|
if subpath is given, then it will be added at the end, eg /someitems/subpath or /someitems/4/subpath
|
47
|
if subpath is given, then it will be added at the end, eg /someitems/subpath or /someitems/4/subpath
|