forked from atlassian-api/atlassian-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'atlassian-api:master' into master
- Loading branch information
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.41.11 | ||
3.41.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,11 +76,15 @@ Manage users | |
# Get web sudo cookies using normal http request | ||
jira.user_get_websudo() | ||
# Fuzzy search using emailAddress or displayName | ||
# Fuzzy search using emailAddress or displayName for Jira Cloud | ||
jira.user_find_by_user_string(query="[email protected]", start=0, limit=50, include_inactive_users=False) | ||
jira.user_find_by_user_string(query="a.user", start=0, limit=50, include_inactive_users=False) | ||
jira.user_find_by_user_string(query="a user") | ||
jira.user_find_by_user_string(account_id="a-users-account-id") | ||
# for DC edition | ||
jira.user_find_by_user_string(username="a.user") | ||
jira.user_find_by_user_string(username="a user") | ||
jira.user_find_by_user_string(username="a") | ||
# Get groups of a user. This API is only available for Jira Cloud platform. | ||
jira.get_user_groups(account_id) | ||
|