ProductBarcode: add first backend API implementation

This commit is contained in:
Crumb Owl
2025-07-06 20:51:03 +02:00
parent c666a8a8c1
commit 0ed69b75a1
7 changed files with 400 additions and 0 deletions

View File

@@ -195,6 +195,38 @@ const docTemplate = `{
}
}
},
"/v1/getproductfromean": {
"get": {
"security": [
{
"Bearer": []
}
],
"produces": [
"application/json"
],
"tags": [
"Items"
],
"summary": "Search EAN from Barcode",
"parameters": [
{
"type": "string",
"description": "barcode to be searched",
"name": "data",
"in": "query"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
}
}
}
}
},
"/v1/groups": {
"get": {
"security": [