Skip to content

Commit

Permalink
Merge pull request #41 from 2077-Collective/dev
Browse files Browse the repository at this point in the history
Dev to main merge
  • Loading branch information
happychuks authored Aug 21, 2024
2 parents c0fdedf + 86b72c2 commit aaa6c6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/apps/research/models/article.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ class Article(BaseModel):
('ready', 'Ready'),
)

title = models.CharField(max_length=100)
title = models.CharField(max_length=500)
content = CKEditor5Field('Text', null=True, blank=True, config_name='extends')
summary = models.CharField(max_length=100, blank=True)
summary = models.CharField(max_length=1000, blank=True)
authors = models.ManyToManyField(Author, blank=True, related_name='articles')
slug = models.SlugField(blank=True)
categories = models.ManyToManyField(Category, blank=True, related_name='articles')
Expand Down

0 comments on commit aaa6c6c

Please sign in to comment.