Skip to content

Commit a427358

Browse files
authored
VCST-608: add storeId field to swagger schema for POST connect/token (#2765)
1 parent 3c45d27 commit a427358

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/VirtoCommerce.Platform.Web/Swagger/OpenIDEndpointDescriptionFilter.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ public void Apply(OpenApiOperation operation, OperationFilterContext context)
3232
{ "grant_type", new OpenApiSchema() { Type = "string" } },
3333
{ "scope", new OpenApiSchema() { Type = "string" } },
3434
{ "username", new OpenApiSchema() { Type = "string" } },
35-
{ "password", new OpenApiSchema() { Type = "string" } }
35+
{ "password", new OpenApiSchema() { Type = "string" } },
36+
{ "storeId", new OpenApiSchema() { Type = "string" } },
3637
};
3738
mediaType.Schema.Required = new HashSet<string>
3839
{

0 commit comments

Comments
 (0)