Skip to content

Commit a66c771

Browse files
Gonchik TsymzhitovGonchik Tsymzhitov
authored andcommitted
Add agile remove method
1 parent f3dbd39 commit a66c771

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

CONTRIBUTING.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,6 @@ All methods based on docs from: https://developer.atlassian.com/docs/
6262
- https://docs.atlassian.com/atlassian-bamboo/REST/latest/
6363
7. Tempo:
6464
- https://www.tempo.io/server-api-documentation
65-
- http://tempo.io/doc/core/api/rest/latest/
65+
- http://tempo.io/doc/core/api/rest/latest/
66+
8. Marketplace:
67+
- https://developer.atlassian.com/platform/marketplace/rest

atlassian/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.12.2
1+
1.12.3

atlassian/jira.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,6 +1006,15 @@ def get_all_agile_boards(self, board_name=None, project_key=None, board_type=Non
10061006

10071007
return self.get(url, params=params)
10081008

1009+
def delete_agile_board(self, board_id):
1010+
"""
1011+
Delete agile board by id
1012+
:param board_id:
1013+
:return:
1014+
"""
1015+
url = 'rest/agile/1.0/board/{}'.format(str(board_id))
1016+
return self.delete(url)
1017+
10091018
def health_check(self):
10101019
"""
10111020
Get health status

0 commit comments

Comments
 (0)