Change name of update method for template folder

It was initialy called "rename" which does not comply with
RESTful CRUD (create, update, read, delete) naming practice.
We remove the 'rename' operation in favour of template folder
resource update endpoint as it allows us to extend it with other
attributes.
This commit is contained in:
Pea Tyczynska
2018-11-12 14:28:07 +00:00
parent d4506f7825
commit 103033a330
3 changed files with 10 additions and 10 deletions

View File

@@ -11,9 +11,9 @@ post_create_template_folder_schema = {
"required": ["name", "parent_id"]
}
post_rename_template_folder_schema = {
post_update_template_folder_schema = {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "POST schema for renaming template_folder",
"description": "POST schema for updating template_folder",
"type": "object",
"properties": {
"name": {"type": "string", "minLength": 1},