diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2023-01-10 10:08:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2023-01-10 10:08:50 +0700 |
| commit | f0f31234dfaa22850ebb502211a4488b4981f17c (patch) | |
| tree | 3ab1a41c19ac6c3ecb2abd64addf2159a08e8bdf /indoteknik_api/controllers/api_v1 | |
| parent | 8a70abf6f05e9ffc6e74ec2e80f61db72f6f0401 (diff) | |
change text to html in customer review
Diffstat (limited to 'indoteknik_api/controllers/api_v1')
| -rw-r--r-- | indoteknik_api/controllers/api_v1/customer.py | 2 |
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 }) |
