add sessionUUID and feedbackUUID to feedback card
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is passing

This commit is contained in:
2024-04-22 21:56:05 +03:00
parent a5466f6bff
commit 0649f91341
4 changed files with 36 additions and 12 deletions

View File

@@ -177,17 +177,23 @@ func init() {
"type": "string",
"format": "date-time"
},
"feedback_uuid": {
"type": "string"
},
"project_id": {
"description": "to have more context about the project",
"type": "string"
},
"session_uuid": {
"type": "string"
},
"text": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"feature_request",
"feature",
"feedback",
"support"
]
@@ -360,17 +366,23 @@ func init() {
"type": "string",
"format": "date-time"
},
"feedback_uuid": {
"type": "string"
},
"project_id": {
"description": "to have more context about the project",
"type": "string"
},
"session_uuid": {
"type": "string"
},
"text": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"feature_request",
"feature",
"feedback",
"support"
]