ADD prefix to all API controllers

This commit is contained in:
2025-05-19 14:52:39 +02:00
parent d24a6fccab
commit c0cb38d48e
9 changed files with 15 additions and 11 deletions

View File

@@ -5,7 +5,7 @@ meta {
}
get {
url: {{base_url}}/download/input/{{video_uuid}}
url: {{base_url}}/api/v1/download/input/{{video_uuid}}
body: none
auth: inherit
}

View File

@@ -5,7 +5,7 @@ meta {
}
get {
url: {{base_url}}/download/output/{{video_uuid}}
url: {{base_url}}/api/v1/download/output/{{video_uuid}}
body: none
auth: inherit
}

View File

@@ -5,7 +5,7 @@ meta {
}
post {
url: {{base_url}}/edit/{{video_uuid}}
url: {{base_url}}/api/v1/edit/{{video_uuid}}
body: formUrlEncoded
auth: inherit
}

View File

@@ -5,7 +5,7 @@ meta {
}
get {
url: {{base_url}}/process/{{video_uuid}}
url: {{base_url}}/api/v1/process/{{video_uuid}}
body: none
auth: inherit
}

View File

@@ -5,7 +5,7 @@ meta {
}
get {
url: {{base_url}}/progress/{{video_uuid}}
url: {{base_url}}/api/v1/progress/{{video_uuid}}
body: none
auth: inherit
}

View File

@@ -5,7 +5,7 @@ meta {
}
post {
url: {{base_url}}/upload
url: {{base_url}}/api/v1/upload
body: multipartForm
auth: inherit
}