mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
appsv2: in perm resource, fix handling of additional urls containing vars to replace
This commit is contained in:
parent
8b71ebc40f
commit
8fbdd228ab
1 changed files with 1 additions and 1 deletions
|
@ -571,7 +571,7 @@ class PermissionsResource(AppResource):
|
|||
infos["url"] = _hydrate_app_template(infos["url"], settings)
|
||||
|
||||
if infos.get("additional_urls"):
|
||||
infos["additional_urls"] = [_hydrate_app_template(url) for url in infos["additional_urls"]]
|
||||
infos["additional_urls"] = [_hydrate_app_template(url, settings) for url in infos["additional_urls"]]
|
||||
|
||||
def provision_or_update(self, context: Dict = {}):
|
||||
from yunohost.permission import (
|
||||
|
|
Loading…
Add table
Reference in a new issue