You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
scriptform/examples/auth/auth.json

26 lines
747 B

{
"title": "Authorization protected",
"users": {
"test": "secret",
"test2": "password"
},
"forms": {
"do_nothing": {
"title": "Test form",
"description": "You should only see this if you've entered the correct password",
"submit_title": "Do nothing",
"script": "job_do_nothing.sh",
"fields": [
]
},
"only_some_users": {
"title": "Only some users",
"description": "You should only see this if you're user 'test2'",
"submit_title": "Do nothing",
"script": "job_do_nothing.sh",
"allowed_users": ["test2"],
"fields": [
]
}
}
}