i'm trying to get all installed plugins info on my jira instance, i've tried to use get_plugins_info()
but i noticed that get_plugins_info() calls self.get(...) without trailing=True
which leads the method to send a get to [ {jira_url}/jira/rest/plugins/1.0 ] without a trailing slash
which leads to a 404 HttpError
i've tried to manually edit the code and add trailing=True to self.get()
and it worked
i've check this matter on jira 7.13.0 and not quite sure about this endpoint on other versions
can you please fix this one ?