-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
comments app #11
comments app #11
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Хорошая работа.👍
Только один вопрос есть.
core/enums.py
Outdated
from enum import IntEnum | ||
|
||
|
||
class Limits(IntEnum): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Это что?
Какую задачу решает?
Почему max_length
это не константа в settings.py
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Коллекция перечислений.
Большой разницы нет, если не нужно перебирать или получить имя по значению.
Когда добавлял, ещё констант не было в settings.
Так код немного понятнее, на мой взгляд.
Импорт класса Limits более понятен, чем импорт settings и лаконичнее чем импорт констант из settings.
Удалю, перенесу константой в settings.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Я вроде разобрался, интересное решение.
Я бы попробовал, но переносить константы из settings уже лениво.
В идеале такое должно быть установлено как правильно на старте проекта.
PS: А почему в MAX_LEN_COMMENT_TEXT = (200,)
200 внутри кортежа?
На первый взгляд должно быть MAX_LEN_COMMENT_TEXT = 200
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
С кортежем, я ошибся.
Перенес константой в settings.
Модель ирегистарция в админке.