Skip to content

Commit

Permalink
fix jira archive project method from post to put (#1491)
Browse files Browse the repository at this point in the history
Co-authored-by: 김원준님/Infra Solution팀 <[email protected]>
  • Loading branch information
SuperWonjune and 김원준님/Infra Solution팀 authored Jan 22, 2025
1 parent 85eea47 commit 405049f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atlassian/jira.py
Original file line number Diff line number Diff line change
Expand Up @@ -2508,7 +2508,7 @@ def archive_project(self, key):
"""
base_url = self.resource_url("project")
url = "{base_url}/{key}/archive".format(base_url=base_url, key=key)
return self.post(url)
return self.put(url)

def project(self, key, expand=None):
"""
Expand Down

0 comments on commit 405049f

Please sign in to comment.