This commit is contained in:
2026-06-10 12:12:59 +03:30
parent fc732ae75f
commit 3da6549edb
6 changed files with 111 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
meta {
name: admin delete feedback
type: http
seq: 4
}
delete {
url: {{baseUrl}}/admin/app-feedback/:id
body: none
auth: inherit
}
params:path {
id: 1
}
settings {
encodeUrl: true
}
+21
View File
@@ -0,0 +1,21 @@
meta {
name: admin list feedback
type: http
seq: 3
}
get {
url: {{baseUrl}}/admin/app-feedback
body: none
auth: inherit
}
params:query {
~has_comment: 1
~stars: 5
~per_page: 20
}
settings {
encodeUrl: true
}
+8
View File
@@ -0,0 +1,8 @@
meta {
name: app feedback
seq: 24
}
auth {
mode: inherit
}
+15
View File
@@ -0,0 +1,15 @@
meta {
name: get my feedback
type: http
seq: 1
}
get {
url: {{baseUrl}}/app-feedback
body: none
auth: inherit
}
settings {
encodeUrl: true
}
+23
View File
@@ -0,0 +1,23 @@
meta {
name: submit feedback
type: http
seq: 2
}
post {
url: {{baseUrl}}/app-feedback
body: json
auth: inherit
}
body:json {
{
"stars": 4,
"content": "هیچ راه واحدی برای مدیتیشن وجود ندارد"
}
}
settings {
encodeUrl: true
timeout: 0
}
+25
View File
@@ -0,0 +1,25 @@
meta {
name: bulk answer
type: http
seq: 9
}
post {
url: {{baseUrl}}/survey-questions/answers
body: json
auth: inherit
}
body:json {
{
"answers": [
{ "question_id": 2, "option_ids": [8, 9] },
{ "question_id": 3, "option_ids": [] }
]
}
}
settings {
encodeUrl: true
timeout: 0
}