Skip to content

Commit f09c630

Browse files
authored
Merge pull request #8 from elementalvoid/get-pages-by-label
Add the `Get Label Pages` endpoint.
2 parents 49aeb66 + 1f9cd0e commit f09c630

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

config/confluence-routes.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@
4949
{
5050
"path": "/spaces/{id}/pages",
5151
"methods": ["get"]
52+
},
53+
{
54+
"path": "/labels/{id}/pages",
55+
"methods": ["get"]
5256
}
5357
]
5458
},
@@ -138,6 +142,45 @@
138142
"methods": ["get"]
139143
}
140144
]
145+
},
146+
"label": {
147+
"displayName": "Label",
148+
"description": "Work with Confluence labels",
149+
"routes": [
150+
{
151+
"path": "/attachments/{id}/labels",
152+
"methods": ["get"]
153+
},
154+
{
155+
"path": "/blogposts/{id}/labels",
156+
"methods": ["get"]
157+
},
158+
{
159+
"path": "/custom-content/{id}/labels",
160+
"methods": ["get"]
161+
},
162+
{
163+
"path": "/labels",
164+
"methods": ["get"]
165+
},
166+
{
167+
"path": "/pages/{id}/labels",
168+
"methods": ["get"]
169+
},
170+
{
171+
"path": "/spaces/{id}/labels",
172+
"methods": ["get"]
173+
},
174+
{
175+
"path": "/spaces/{id}/content/labels",
176+
"methods": ["get"]
177+
},
178+
{
179+
"path": "/pages/{id}/labels",
180+
"methods": ["get"]
181+
}
182+
183+
]
141184
}
142185
}
143186
}

0 commit comments

Comments
 (0)