You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "This currently only returns the total number of downloads for crates owned\nby the user.",
1061
1165
"operationId": "get_user_stats",
1166
+
"parameters": [
1167
+
{
1168
+
"description": "ID of the user",
1169
+
"in": "path",
1170
+
"name": "id",
1171
+
"required": true,
1172
+
"schema": {
1173
+
"format": "int32",
1174
+
"type": "integer"
1175
+
}
1176
+
}
1177
+
],
1062
1178
"responses": {
1063
1179
"200": {
1064
1180
"description": "Successful Response"
@@ -1073,6 +1189,17 @@ snapshot_kind: text
1073
1189
"/api/v1/users/{user}": {
1074
1190
"get": {
1075
1191
"operationId": "find_user",
1192
+
"parameters": [
1193
+
{
1194
+
"description": "Login name of the user",
1195
+
"in": "path",
1196
+
"name": "user",
1197
+
"required": true,
1198
+
"schema": {
1199
+
"type": "string"
1200
+
}
1201
+
}
1202
+
],
1076
1203
"responses": {
1077
1204
"200": {
1078
1205
"description": "Successful Response"
@@ -1086,6 +1213,18 @@ snapshot_kind: text
1086
1213
"put": {
1087
1214
"description": "This endpoint allows users to update their email address and publish notifications settings.\n\nThe `id` parameter needs to match the ID of the currently authenticated user.",
0 commit comments