-
Notifications
You must be signed in to change notification settings - Fork 5
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
Refactoring/user model #67
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.
@@ -57,8 +57,13 @@ run: | |||
cd $(PROJECT_DIR) && $(DJANGO_RUN) runserver | |||
|
|||
|
|||
# Запуск django shell | |||
shell: |
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.
давай тогда сразу добавим shell +
https://django-extensions.readthedocs.io/en/latest/shell_plus.html
Обрати внимание что эти пакеты в dev)
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.
Обрати внимание что эти пакеты в dev)
Извини, не понял какие пакеты ты имеешь ввиду
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.
имеется ввиду django-extensions, так есть более удобный инструмент shell_plus.
Ну чтобы они не уходили эти пакеты в прод, а остались в дев)
Может конечно очевидно, но решил напомнить
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.
Нет, всё в порядке) показалось что открылась документация
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.
@IvanFilippov74 Посмотри пожалуйста, что я изменил в твоем пулреквесте. В основном это касается mypy flake8, заодно поправил как должны лежать настройки)
По flake8 не совсем понятно, ошибка указывала на импроты в models.py, после её устранения импорты выглядят так: from core.constants import (
EMAIL_MAX_LENGTH,
NAME_MAX_LENGTH,
QUERY_SET_LENGTH,
ROLE_ADMIN,
ROLE_AGENT,
ROLE_MODERATOR,
ROLES_CHOICES,
)
from django.contrib.auth.models import AbstractBaseUser, PermissionsMixin
from django.core.mail import send_mail
from django.db import models
from django.utils import timezone
from django.utils.translation import gettext_lazy as _
from phonenumber_field.modelfields import PhoneNumberField
from phonenumber_field.validators import validate_international_phonenumber
from users.managers import CustomUserManager Но ведь по код стайлу мы импортируем в таком порядке:
Или приложение |
Closes #52
Description
make shell
, которая запускает django-shellmanage.py createsuperuser
, хотелось добиться того что бы роль 'admin' устанавливалась по умолчанию и без дополнительного запроса. Нужно будет переписывать в менеджере команду 'createsuperuser'. На самом деле пока что стоит костыль, при создании суперпользователя какую роль мы бы не поставили, в базу запишется админ. Если сейчас это не приоритетно, можно занятся этим чуть позже.