mirror of
				https://github.com/home-assistant/core.git
				synced 2025-11-04 00:19:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			267 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			267 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Constants for the auth module."""
 | 
						|
from datetime import timedelta
 | 
						|
 | 
						|
ACCESS_TOKEN_EXPIRATION = timedelta(minutes=30)
 | 
						|
MFA_SESSION_EXPIRATION = timedelta(minutes=5)
 | 
						|
 | 
						|
GROUP_ID_ADMIN = "system-admin"
 | 
						|
GROUP_ID_USER = "system-users"
 | 
						|
GROUP_ID_READ_ONLY = "system-read-only"
 |