Coverage for polar/file/auth.py: 100%
9 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-12-05 16:17 +0000
« prev ^ index » next coverage.py v7.10.6, created at 2025-12-05 16:17 +0000
1from typing import Annotated 1a
3from fastapi.params import Depends 1a
5from polar.auth.dependencies import Authenticator 1a
6from polar.auth.models import AuthSubject, Organization, User 1a
7from polar.auth.scope import Scope 1a
9_FileRead = Authenticator( 1a
10 required_scopes={
11 Scope.web_read,
12 Scope.web_write,
13 Scope.files_write,
14 Scope.files_read,
15 },
16 allowed_subjects={User, Organization},
17)
18FileRead = Annotated[AuthSubject[User | Organization], Depends(_FileRead)] 1a
20_FileWrite = Authenticator( 1a
21 required_scopes={
22 Scope.web_write,
23 Scope.files_write,
24 },
25 allowed_subjects={User, Organization},
26)
27FileWrite = Annotated[AuthSubject[User | Organization], Depends(_FileWrite)] 1a