We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
비회원 / 선발 전 후 로 나누어서 고려. 현재 비회원 / 회원 의 구조를 비회원 / 선발 전 회원 / 선발 후 회원 등으로 세분화. Newbie 선발, 내부 CTF 등, 권한을 고려한 공간 분리 필요.
The text was updated successfully, but these errors were encountered:
User model에 is_plus_member = models.BooleanField(default=False) 를 enum type으로 바꾸는 안을 제시해봅니다 https://docs.djangoproject.com/en/3.0/ref/models/fields/#enumeration-types 대충 이런 게 있네요
is_plus_member = models.BooleanField(default=False)
Sorry, something went wrong.
또는 기존 코드 그대로 쓸 여지가 많으면 is_pre_qe = models.BooleanField(default=False) 추가하는 방안으로?
is_pre_qe = models.BooleanField(default=False)
No branches or pull requests
비회원 / 선발 전 후 로 나누어서 고려.
현재 비회원 / 회원 의 구조를 비회원 / 선발 전 회원 / 선발 후 회원 등으로 세분화.
Newbie 선발, 내부 CTF 등, 권한을 고려한 공간 분리 필요.
The text was updated successfully, but these errors were encountered: