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
@@ -41,6 +41,7 @@ public static void MapAuthenticationConfigurationEndpoints(this WebApplication a
41
41
42
42
returnCreated();
43
43
})
44
+
.WithOpenApi()
44
45
.WithSummary("Creates an authentication configuration for the authentication process. In order to use this, it will have to be provided to the `stepup` client method via the purpose field")
45
46
.Produces(StatusCodes.Status201Created)
46
47
.Produces(StatusCodes.Status400BadRequest)
@@ -56,6 +57,7 @@ public static void MapAuthenticationConfigurationEndpoints(this WebApplication a
56
57
57
58
returnNoContent();
58
59
})
60
+
.WithOpenApi()
59
61
.WithSummary("Updates an authentication configuration for the authentication process. In order to use this, it will have to be provided to the `stepup` client method via the purpose field")
60
62
.Produces(StatusCodes.Status204NoContent)
61
63
.Produces(StatusCodes.Status404NotFound)
@@ -77,6 +79,7 @@ public static void MapAuthenticationConfigurationEndpoints(this WebApplication a
77
79
78
80
returnNoContent();
79
81
})
82
+
.WithOpenApi()
80
83
.WithSummary("Deletes an authentication configuration for the provided purpose.")
0 commit comments