From c64d04e0c5e34cea3ea0a32ed4d9ea9f2c23dbde Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 16 Apr 2026 14:13:37 -0700 Subject: [PATCH] docs --- go/internal/auth/service.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/go/internal/auth/service.go b/go/internal/auth/service.go index 24222b9..f15b1f8 100644 --- a/go/internal/auth/service.go +++ b/go/internal/auth/service.go @@ -57,10 +57,7 @@ type AuthService interface { ExtendSession(ctx context.Context, sessionToken string) error SignOut(ctx context.Context, sessionToken string) error - // MintFirebaseCustomToken returns a Firebase custom token with uid=humanId - // and no custom claims. Network membership is enforced via a Firestore - // mirror (humans/{humanId}.networks) read at rule eval time, so the token - // only needs to carry identity. + // MintFirebaseCustomToken returns a Firebase custom token with uid=humanId and no custom claims. MintFirebaseCustomToken(ctx context.Context, humanId string) (string, error) IsSystemAdmin(ctx context.Context, email string) bool