Browse Source

fix(documentation): correct boolean value casing in API documentation view

- Updated the boolean value for "is_active" from lowercase to uppercase to adhere to Python's convention.
master
mortezaei 8 months ago
parent
commit
2d7ddfb204
  1. 2
      apps/api/views/documentation.py

2
apps/api/views/documentation.py

@ -518,7 +518,7 @@ class CustomAPIDocumentationView(View):
"app_type": "google_play", "app_type": "google_play",
"app_store_downloads": 1500, "app_store_downloads": 1500,
"google_play_downloads": 23000, "google_play_downloads": 23000,
"is_active": true
"is_active": True
} }
], indent=2) ], indent=2)
} }

Loading…
Cancel
Save