File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 4
4
"flake8.importStrategy" : " fromEnvironment" ,
5
5
"mypy-type-checker.importStrategy" : " fromEnvironment" ,
6
6
"isort.importStrategy" : " fromEnvironment" ,
7
- "black-formatter.importStrategy" : " fromEnvironment"
7
+ "black-formatter.importStrategy" : " fromEnvironment" ,
8
+ "workbench.colorCustomizations" : {
9
+ "activityBar.background" : " #4D1C3B" ,
10
+ "titleBar.activeBackground" : " #6B2752" ,
11
+ "titleBar.activeForeground" : " #FDF8FB"
12
+ }
8
13
}
Original file line number Diff line number Diff line change @@ -599,6 +599,7 @@ def search_all(
599
599
to_created_time : Optional [int ] = None ,
600
600
from_modified_time : Optional [int ] = None ,
601
601
to_modified_time : Optional [int ] = None ,
602
+ user_ids : Optional [List [str ]] = None ,
602
603
) -> dict :
603
604
"""
604
605
Search all users.
@@ -622,6 +623,7 @@ def search_all(
622
623
to_created_time (int): Optional int, only include users who were created on or before this time (in Unix epoch milliseconds)
623
624
from_modified_time (int): Optional int, only include users whose last modification/update occurred on or after this time (in Unix epoch milliseconds)
624
625
to_modified_time (int): Optional int, only include users whose last modification/update occurred on or before this time (in Unix epoch milliseconds)
626
+ user_ids (List[str]): Optional list of user IDs to filter by
625
627
626
628
Return value (dict):
627
629
Return dict in the format
@@ -669,6 +671,9 @@ def search_all(
669
671
if login_ids is not None :
670
672
body ["loginIds" ] = login_ids
671
673
674
+ if user_ids is not None :
675
+ body ["userIds" ] = user_ids
676
+
672
677
if text is not None :
673
678
body ["text" ] = text
674
679
You can’t perform that action at this time.
0 commit comments