mirror of
				https://github.com/evraz-hack/backend.git
				synced 2025-11-04 01:27:26 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			426 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			426 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.contrib.auth.models import AbstractUser
 | 
						|
 | 
						|
 | 
						|
class User(AbstractUser):
 | 
						|
    """
 | 
						|
    Default custom user model for exhauster analytics.
 | 
						|
    If adding fields that need to be filled at user signup,
 | 
						|
    check forms.SignupForm and forms.SocialSignupForms accordingly.
 | 
						|
    """
 | 
						|
 | 
						|
    #: First and last name do not cover name patterns around the globe
 | 
						|
    first_name = None  # type: ignore
 | 
						|
    last_name = None  # type: ignore
 |