diff --git a/backend/product/views.py b/backend/product/views.py index 9499c69..5a460ff 100644 --- a/backend/product/views.py +++ b/backend/product/views.py @@ -467,6 +467,7 @@ class BotProductDetailView(APIView): product = get_object_or_404(ProductModel, pk=pk, show_in_bot=True) return Response({ + 'name': product.name, 'banner' : product.bot_banner, 'link': f'https://heymlz.com/product/{product.slug}' }) \ No newline at end of file