Skip to content

Commit 4086628

Browse files
authored
[Jira] Updated docs for DC case of user_find_by_user_string (#1368)
1 parent 4157982 commit 4086628

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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)