summaryrefslogtreecommitdiff
path: root/indoteknik_api
diff options
context:
space:
mode:
authorFIN-IT_AndriFP <andrifebriyadiputra@gmail.com>2026-01-14 09:02:40 +0700
committerFIN-IT_AndriFP <andrifebriyadiputra@gmail.com>2026-01-14 09:02:40 +0700
commit96b727403891f0cabcc65c9147fb5bd7ed9b33f2 (patch)
tree7b5abb35cb2d2ac3ac45e060d5f33a3ed8eb1acb /indoteknik_api
parente8291422441d48909252471282c4b72372cccefb (diff)
parentb99d9b8b770f6ae24e9de87e50b66868052d0de5 (diff)
Merge branch 'odoo-backup' of https://bitbucket.org/altafixco/indoteknik-addons into magento-solr-v1
Diffstat (limited to 'indoteknik_api')
-rw-r--r--indoteknik_api/controllers/api_v1/category.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/indoteknik_api/controllers/api_v1/category.py b/indoteknik_api/controllers/api_v1/category.py
index 7d66ad01..4514c2a0 100644
--- a/indoteknik_api/controllers/api_v1/category.py
+++ b/indoteknik_api/controllers/api_v1/category.py
@@ -250,4 +250,17 @@ class Category(controller.Controller):
category = category.parent_frontend_id
categories.reverse()
- return self.response(categories, headers=[('Cache-Control', 'max-age=3600, public')]) \ No newline at end of file
+ return self.response(categories, headers=[('Cache-Control', 'max-age=3600, public')])
+
+ @http.route(prefix + 'category/<int:id>/short-desc', auth='public', methods=['GET', 'OPTIONS'])
+ @controller.Controller.must_authorized()
+ def get_category_short_desc(self, id, **kw):
+ category = request.env['product.public.category'].browse(id)
+
+ if not category.exists():
+ return self.response(code=400, description='Category not found')
+
+ return self.response({
+ "id": category.id,
+ "short_desc": category.short_desc or ""
+ }, headers=[('Cache-Control', 'max-age=600, public')])