summaryrefslogtreecommitdiff
path: root/indoteknik_api/controllers/api_v1
diff options
context:
space:
mode:
authorStephan Christianus <stephanchrst@gmail.com>2023-01-10 03:11:22 +0000
committerStephan Christianus <stephanchrst@gmail.com>2023-01-10 03:11:22 +0000
commit19bbd3203d41d9f52206d7ceaa96480a19566197 (patch)
tree5f3ec2b28c7197d339b58d13a93967fa4a498a53 /indoteknik_api/controllers/api_v1
parentb1329f940ae66b60185fa097012393b0d51b9e5f (diff)
parente4abbde470d917d04256c9804b80d82194d73b51 (diff)
Merged in release (pull request #18)
change text to html in customer review
Diffstat (limited to 'indoteknik_api/controllers/api_v1')
-rw-r--r--indoteknik_api/controllers/api_v1/customer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_api/controllers/api_v1/customer.py b/indoteknik_api/controllers/api_v1/customer.py
index 58c93376..f6d6d40d 100644
--- a/indoteknik_api/controllers/api_v1/customer.py
+++ b/indoteknik_api/controllers/api_v1/customer.py
@@ -21,7 +21,7 @@ class CustomerReview(controller.Controller):
'sequence': review.sequence,
'image': base_url + 'api/image/customer.review/image/' + str(review.id) if review.image else '',
'customer_name': review.customer_name,
- 'ulasan': review.ulasan,
+ 'ulasan': review.ulasan_html,
'name': review.name,
'jabatan': review.jabatan
})