mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2026-01-02 01:47:04 -05:00
feat: Implement initial schema and add various API, service, and management command enhancements across the application.
This commit is contained in:
@@ -34,14 +34,8 @@ class Review(TrackedModel):
|
||||
text = models.TextField(blank=True, help_text="Review text (optional)")
|
||||
|
||||
# Metadata
|
||||
is_public = models.BooleanField(
|
||||
default=True,
|
||||
help_text="Whether this review is visible to others"
|
||||
)
|
||||
helpful_votes = models.PositiveIntegerField(
|
||||
default=0,
|
||||
help_text="Number of users who found this helpful"
|
||||
)
|
||||
is_public = models.BooleanField(default=True, help_text="Whether this review is visible to others")
|
||||
helpful_votes = models.PositiveIntegerField(default=0, help_text="Number of users who found this helpful")
|
||||
|
||||
class Meta(TrackedModel.Meta):
|
||||
verbose_name = "Review"
|
||||
|
||||
Reference in New Issue
Block a user