feat(api): add tag filtering on the applications list endpoint (#7360)

This commit is contained in:
Yassine Benh
2026-01-10 20:22:29 +01:00
committed by GitHub
parent 2f5e879b73
commit 31ba241d97
3 changed files with 43 additions and 7 deletions

View File

@@ -19,6 +19,17 @@
"summary": "List",
"description": "List all applications.",
"operationId": "list-applications",
"parameters": [
{
"name": "tag",
"in": "query",
"description": "Filter applications by tag name.",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Get all applications.",