Skip to content

Commit 0e4f6b1

Browse files
authored
[Confluence] Update decprecated function names in docs (#1321)
1 parent cb65460 commit 0e4f6b1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/confluence.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,19 +185,19 @@ Template actions
185185
confluence.create_or_update_template(name, body, template_type, description=description, labels=labels, space=space)
186186
187187
# Get a template by its ID
188-
confluence.get_template_by_id(template_id)
188+
confluence.get_content_template(template_id)
189189
190190
# Get all global content templates
191-
confluence.get_all_templates_from_space()
191+
confluence.get_content_templates()
192192
193193
# Get content templates in a space
194-
confluence.get_all_templates_from_space(space)
194+
confluence.get_content_templates(space)
195195
196196
# Get all global blueprint templates
197-
confluence.get_all_blueprints_from_space()
197+
confluence.get_blueprint_templates()
198198
199199
# Get all blueprint templates in a space
200-
confluence.get_all_blueprints_from_space(space)
200+
confluence.get_blueprint_templates(space)
201201
202202
# Removing a template
203203
confluence.remove_template(template_id)

0 commit comments

Comments
 (0)