mirror of
https://github.com/YunoHost-Apps/yourls_ynh.git
synced 2024-09-03 20:35:59 +02:00
12 lines
441 B
Python
12 lines
441 B
Python
|
import json
|
||
|
|
||
|
with open("/etc/ssowat/conf.json.persistent", "r", encoding='utf-8') as jsonFile:
|
||
|
data = json.load(jsonFile)
|
||
|
if "protected_urls" in data:
|
||
|
data["protected_urls"].append("__DOMAIN__/__PATH__/admin")
|
||
|
else:
|
||
|
data["protected_urls"] = ["__DOMAIN__/__PATH__/admin"]
|
||
|
|
||
|
with open("/etc/ssowat/conf.json.persistent", "w", encoding='utf-8') as jsonFile:
|
||
|
jsonFile.write(json.dumps(data, indent=4, sort_keys=True))
|