fork of https://github.com/sourcegraph/zoekt
1queryString: Get database/user
2query: (and case_substr:"Get" substr:"database/user")
3targetRank: 3
4
5github.com/sourcegraph/sourcegraph-public-snapshot/internal/database/user_emails.go
6161:func (s *userEmailsStore) Get(ctx context.Context, userID int32, email string) (emailCanonicalCase string, verified bool, err error) {
750: Get(ctx context.Context, userID int32, email string) (emailCanonicalCase string, verified bool, err error)
891:func (s *userEmailsStore) GetInitialSiteAdminInfo(ctx context.Context) (email string, tosAccepted bool, err error) {
9hidden 14 more line matches
10
11github.com/sourcegraph/sourcegraph-public-snapshot/internal/database/user_roles.go
1235: GetUserRoleOpts UserRoleOpts
13358:func (r *userRoleStore) GetByUserID(ctx context.Context, opts GetUserRoleOpts) ([]*types.UserRole, error) {
14365:func (r *userRoleStore) GetByRoleID(ctx context.Context, opts GetUserRoleOpts) ([]*types.UserRole, error) {
15hidden 8 more line matches
16
17**github.com/sourcegraph/sourcegraph-public-snapshot/internal/database/users.go**
18940:func (u *userStore) GetByID(ctx context.Context, id int32) (*types.User, error) {
19947:func (u *userStore) GetByVerifiedEmail(ctx context.Context, email string) (*types.User, error) {
20951:func (u *userStore) GetByUsername(ctx context.Context, username string) (*types.User, error) {
21hidden 17 more line matches
22
23github.com/sourcegraph/sourcegraph-public-snapshot/internal/database/user_credentials.go
24248:func (s *userCredentialsStore) GetByID(ctx context.Context, id int64) (*UserCredential, error) {
25271:func (s *userCredentialsStore) GetByScope(ctx context.Context, scope UserCredentialScope) (*UserCredential, error) {
26108: GetByID(ctx context.Context, id int64) (*UserCredential, error)
27hidden 8 more line matches
28
29github.com/sourcegraph/sourcegraph-public-snapshot/internal/database/user_emails_test.go
3056:func TestUserEmails_Get(t *testing.T) {
31106:func TestUserEmails_GetPrimary(t *testing.T) {
32585:func TestUserEmails_GetLatestVerificationSentEmail(t *testing.T) {
33hidden 10 more line matches
34
35github.com/sourcegraph/sourcegraph-public-snapshot/internal/database/users_test.go
36628:func TestUsers_GetByVerifiedEmail(t *testing.T) {
37664:func TestUsers_GetByUsername(t *testing.T) {
38711:func TestUsers_GetByUsernames(t *testing.T) {
39hidden 32 more line matches
40
41hidden 3 more file matches