From aaf1ef406dc1cad93834f8375729c4047fe96079 Mon Sep 17 00:00:00 2001 From: chand912 <68910121+chand912@users.noreply.github.com> Date: Mon, 8 Aug 2022 15:48:13 +0100 Subject: [PATCH] Update jira.rst Adding a new method to get all the users who have browse permission to a project --- docs/jira.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/jira.rst b/docs/jira.rst index fe1f8c290..f78dc8b00 100644 --- a/docs/jira.rst +++ b/docs/jira.rst @@ -146,6 +146,10 @@ Manage projects # Follow the documentation of /notificationscheme/{id} resource for all details about returned value. # Use 'expand' to get details (default is None) possible values are notificationSchemeEvents,user,group,projectRole,field,all jira.get_priority_scheme_of_project(project_key_or_id, expand=None) + + # Returns a list of active users who have browse permission for a project that matches the search string for username. + # Using " " string (space) for username gives All the active users who have browse permission for a project + jira.get_users_with_browse_permission_to_a_project(self, username, issue_key=None, project_key=None, start=0, limit=100) Manage issues -------------