We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edb899c commit cccd5d1Copy full SHA for cccd5d1
atlassian/jira.py
@@ -2868,6 +2868,14 @@ def get_plugin_info(self, plugin_key):
2868
url = "rest/plugins/1.0/{plugin_key}-key".format(plugin_key=plugin_key)
2869
return self.get(url, headers=self.no_check_headers, trailing=True)
2870
2871
+ def get_plugin_license_info(self, plugin_key):
2872
+ """
2873
+ Provide plugin license info
2874
+ :return a json specific License query
2875
2876
+ url = f"/rest/plugins/1.0/{plugin_key}-key/license"
2877
+ return self.get(url, headers=self.no_check_headers, trailing=True)
2878
+
2879
def upload_plugin(self, plugin_path):
2880
"""
2881
Provide plugin path for upload into Jira e.g. useful for auto deploy
0 commit comments