Skip to content

Commit

Permalink
[Confluence] Update decprecated function names in docs (#1321)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bajoukx authored Feb 3, 2024
1 parent cb65460 commit 0e4f6b1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/confluence.rst
Original file line number Diff line number Diff line change
Expand Up @@ -185,19 +185,19 @@ Template actions
confluence.create_or_update_template(name, body, template_type, description=description, labels=labels, space=space)
# Get a template by its ID
confluence.get_template_by_id(template_id)
confluence.get_content_template(template_id)
# Get all global content templates
confluence.get_all_templates_from_space()
confluence.get_content_templates()
# Get content templates in a space
confluence.get_all_templates_from_space(space)
confluence.get_content_templates(space)
# Get all global blueprint templates
confluence.get_all_blueprints_from_space()
confluence.get_blueprint_templates()
# Get all blueprint templates in a space
confluence.get_all_blueprints_from_space(space)
confluence.get_blueprint_templates(space)
# Removing a template
confluence.remove_template(template_id)
Expand Down

0 comments on commit 0e4f6b1

Please sign in to comment.