Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(webapi): Fix description typo in OpenAPI spec. #1643

Merged
merged 2 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/schema/V1/swagger.verified.json
Original file line number Diff line number Diff line change
Expand Up @@ -5851,7 +5851,7 @@
}
}
},
"description": "The UUID of the created the dialog aggregate. A relative URL to the newly created activity is set in the \u0022Location\u0022 header."
"description": "The UUID of the created dialog aggregate. A relative URL to the newly created activity is set in the \u0022Location\u0022 header."
},
"204": {
"description": "No Content"
Expand Down Expand Up @@ -6469,7 +6469,7 @@
}
}
},
"description": "The UUID of the created the dialog activity. A relative URL to the newly created activity is set in the \u0022Location\u0022 header."
"description": "The UUID of the created dialog activity. A relative URL to the newly created activity is set in the \u0022Location\u0022 header."
},
"204": {
"description": "No Content"
Expand Down Expand Up @@ -6832,7 +6832,7 @@
}
}
},
"description": "The UUID of the created the dialog transmission. A relative URL to the newly created activity is set in the \u0022Location\u0022 header."
"description": "The UUID of the created dialog transmission. A relative URL to the newly created activity is set in the \u0022Location\u0022 header."
},
"204": {
"description": "No Content"
Expand Down Expand Up @@ -6970,4 +6970,4 @@
"url": "https://altinn-dev-api.azure-api.net/dialogporten"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ internal static class Constants
internal static class SwaggerSummary
{
internal const string ReturnedResult = "Successfully returned the dialog {0}.";
internal const string Created = "The UUID of the created the dialog {0}. A relative URL to the newly created activity is set in the \"Location\" header.";
internal const string Created = "The UUID of the created dialog {0}. A relative URL to the newly created activity is set in the \"Location\" header.";
internal const string Deleted = "The dialog {0} was deleted successfully.";
internal const string Updated = "The dialog {0} was updated successfully.";
internal const string ValidationError = "Validation error occured. See problem details for a list of errors.";
Expand Down
Loading