Skip to content

Commit 7844c0b

Browse files
authored
Added get_agile_board_properties
1 parent 6606222 commit 7844c0b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

atlassian/jira.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1335,6 +1335,14 @@ def delete_agile_board(self, board_id):
13351335
url = 'rest/agile/1.0/board/{}'.format(str(board_id))
13361336
return self.delete(url)
13371337

1338+
def get_agile_board_properties(self, board_id):
1339+
"""
1340+
Gets a list of all the board properties
1341+
:param board_id: int, str
1342+
"""
1343+
url = 'rest/agile/1.0/board/{board_id}/properties'
1344+
return self.get(url)
1345+
13381346
def health_check(self):
13391347
"""
13401348
Get health status

0 commit comments

Comments
 (0)