Skip to content

Commit 9a49788

Browse files
committed
fix example
1 parent 98f981a commit 9a49788

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/models-library/src/models_library/projects_state.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,12 @@ def _update_json_schema_extra(schema: JsonDict) -> None:
109109
{
110110
"status": ProjectStatus.CLOSED,
111111
"locked": False,
112-
"current_users": [],
112+
"current_user_groupids": [],
113113
},
114114
{
115115
"status": ProjectStatus.OPENING,
116116
"locked": False,
117-
"current_users": [
117+
"current_user_groupids": [
118118
"7",
119119
"15",
120120
"666",
@@ -123,7 +123,7 @@ def _update_json_schema_extra(schema: JsonDict) -> None:
123123
{
124124
"status": ProjectStatus.OPENED,
125125
"locked": False,
126-
"current_users": [
126+
"current_user_groupids": [
127127
"7",
128128
"15",
129129
"666",
@@ -132,7 +132,7 @@ def _update_json_schema_extra(schema: JsonDict) -> None:
132132
{
133133
"status": ProjectStatus.CLONING,
134134
"locked": True,
135-
"current_users": [
135+
"current_user_groupids": [
136136
"666",
137137
],
138138
},

0 commit comments

Comments
 (0)