Skip to content

Commit 8233f84

Browse files
author
gkowalc
committed
Merge branch 'master' of github.com:gkowalc/atlassian-python-api
2 parents 19aaf29 + 7b359a2 commit 8233f84

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

atlassian/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.41.11
1+
3.41.12

docs/jira.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,15 @@ Manage users
7676
# Get web sudo cookies using normal http request
7777
jira.user_get_websudo()
7878
79-
# Fuzzy search using emailAddress or displayName
79+
# Fuzzy search using emailAddress or displayName for Jira Cloud
8080
jira.user_find_by_user_string(query="[email protected]", start=0, limit=50, include_inactive_users=False)
8181
jira.user_find_by_user_string(query="a.user", start=0, limit=50, include_inactive_users=False)
8282
jira.user_find_by_user_string(query="a user")
8383
jira.user_find_by_user_string(account_id="a-users-account-id")
84+
# for DC edition
85+
jira.user_find_by_user_string(username="a.user")
86+
jira.user_find_by_user_string(username="a user")
87+
jira.user_find_by_user_string(username="a")
8488
8589
# Get groups of a user. This API is only available for Jira Cloud platform.
8690
jira.get_user_groups(account_id)

0 commit comments

Comments
 (0)