Chore: Add NewAnonymousSignedInUser to user service (#57537)

This commit is contained in:
Todd Treece
2022-11-03 14:03:29 +01:00
committed by GitHub
parent 8fe02612b6
commit d45fe6e25c
4 changed files with 67 additions and 0 deletions
+1
View File
@@ -16,6 +16,7 @@ type Service interface {
SetUsingOrg(context.Context, *SetUsingOrgCommand) error
GetSignedInUserWithCacheCtx(context.Context, *GetSignedInUserQuery) (*SignedInUser, error)
GetSignedInUser(context.Context, *GetSignedInUserQuery) (*SignedInUser, error)
NewAnonymousSignedInUser(context.Context) (*SignedInUser, error)
Search(context.Context, *SearchUsersQuery) (*SearchUserQueryResult, error)
Disable(context.Context, *DisableUserCommand) error
BatchDisableUsers(context.Context, *BatchDisableUsersCommand) error