mirror of
				https://github.com/blakeblackshear/frigate.git
				synced 2025-10-27 10:52:11 +01:00 
			
		
		
		
	* db migration * db model * assign admin role on password reset * add role to jwt and api responses * don't restrict api access for admins yet * use json response * frontend auth context * update auth form for profile endpoint * add access denied page * add protected routes * auth hook * dialogs * user settings view * restrict viewer access to settings * restrict camera functions for viewer role * add password dialog to account menu * spacing tweak * migrator default to admin * escape quotes in migrator * ui tweaks * tweaks * colors * colors * fix merge conflict * fix icons * add api layer enforcement * ui tweaks * fix error message * debug * clean up * remove print * guard apis for admin only * fix tests * fix review tests * use correct error responses from api in toasts * add role to account menu
		
			
				
	
	
		
			33 lines
		
	
	
		
			897 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			897 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from typing import Optional
 | |
| 
 | |
| from pydantic import Field
 | |
| 
 | |
| from .base import FrigateBaseModel
 | |
| from .env import EnvString
 | |
| 
 | |
| __all__ = ["ProxyConfig", "HeaderMappingConfig"]
 | |
| 
 | |
| 
 | |
| class HeaderMappingConfig(FrigateBaseModel):
 | |
|     user: str = Field(
 | |
|         default=None, title="Header name from upstream proxy to identify user."
 | |
|     )
 | |
|     role: str = Field(
 | |
|         default=None,
 | |
|         title="Header name from upstream proxy to identify user role.",
 | |
|     )
 | |
| 
 | |
| 
 | |
| class ProxyConfig(FrigateBaseModel):
 | |
|     header_map: HeaderMappingConfig = Field(
 | |
|         default_factory=HeaderMappingConfig,
 | |
|         title="Header mapping definitions for proxy user passing.",
 | |
|     )
 | |
|     logout_url: Optional[str] = Field(
 | |
|         default=None, title="Redirect url for logging out with proxy."
 | |
|     )
 | |
|     auth_secret: Optional[EnvString] = Field(
 | |
|         default=None,
 | |
|         title="Secret value for proxy authentication.",
 | |
|     )
 |