prod-releaser.php/config/modules.json

67 lines
2.0 KiB
JSON
Raw Normal View History

{
"admin": {
"POST": {
"description": "Creates a new administrator",
"permissions": [["admin"]],
"parameters": {
"username": { "description": "The new administrator username", "type": "varchar(3,20,alphanumeric)" },
"mail": { "description": "The new administrator email address", "type": "mail" },
"password": { "description": "The new administrator passowrd", "type": "text" }
}
},
"PUT": {
"description": "Updates an existing administrator's data",
"permissions": [],
"parameters": {
"URL0": { "description": "The UID of the wanted administrator.", "type": "id", "rename": "id_admin" },
"mail": { "description": "The new administrator email address", "type": "mail", "optional": true },
"password": { "description": "The new administrator passowrd", "type": "text", "optional": true }
}
},
"DELETE": {
"description": "Deletes an administrator",
"permissions": [["admin"]],
"parameters": {
"URL0": { "description": "The UID of the wanted administrator.", "type": "id", "optional": true, "rename": "id_admin" }
}
},
"GET": {
"description": "Gets an administrator | Gets all administrators if no id defined",
"permissions": [["admin"]],
"parameters": {
"URL0": { "description": "The UID of the wanted administrator.", "type": "id", "optional": true, "rename": "id_admin" }
}
}
},
"token/renew": {
"POST": {
"description": "Renewal of the cyclic hashing system.",
2016-11-08 09:37:29 +00:00
"permission": ["cyclic-hash"],
2016-11-08 09:17:15 +00:00
"parameters": {
"hash": { "description": "new hash to store.", "type": "hash" }
}
}
},
"release/pull": {
"POST": {
2016-11-07 07:15:16 +00:00
"description": "Pulls project from git branch.",
2016-11-08 09:37:29 +00:00
"permissions": ["cyclic-hash"],
2016-11-07 07:15:16 +00:00
"parameters": {
"project": { "description": "Project's name.", "type": "varchar(2,30,alphanumeric)" },
"branch": { "description": "Git release branch.", "type": "varchar(2,30,alphanumeric)" }
}
}
}
}