Coverage for polar/notifications/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 import Depends 1a
5from polar.auth.dependencies import Authenticator 1a
6from polar.auth.models import AuthSubject, User 1a
7from polar.auth.scope import Scope 1a
9_NotificationsRead = Authenticator( 1a
10 required_scopes={
11 Scope.web_read,
12 Scope.web_write,
13 Scope.notifications_read,
14 },
15 allowed_subjects={User},
16)
17NotificationsRead = Annotated[AuthSubject[User], Depends(_NotificationsRead)] 1a
19_NotificationsWrite = Authenticator( 1a
20 required_scopes={
21 Scope.web_write,
22 Scope.notifications_write,
23 },
24 allowed_subjects={User},
25)
26NotificationsWrite = Annotated[AuthSubject[User], Depends(_NotificationsWrite)] 1a