File tree 1 file changed +0
-4
lines changed
packages/backend/src/api/v1
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -34,14 +34,12 @@ users.get("/me/org", async (ctx: Context) => {
34
34
select
35
35
account.id,
36
36
account.created_at,
37
- account.recovery_token,
38
37
account.email,
39
38
account.org_id,
40
39
account.role,
41
40
account.verified,
42
41
account.avatar_url,
43
42
account.last_login_at,
44
- account.single_use_token,
45
43
array_agg(account_project.project_id) as projects
46
44
from
47
45
account
@@ -66,14 +64,12 @@ users.get("/me", async (ctx: Context) => {
66
64
select
67
65
account.id,
68
66
account.created_at,
69
- account.recovery_token,
70
67
account.email,
71
68
account.org_id,
72
69
account.role,
73
70
account.verified,
74
71
account.avatar_url,
75
72
account.last_login_at,
76
- account.single_use_token,
77
73
array_agg(account_project.project_id) as projects
78
74
from
79
75
account
You can’t perform that action at this time.
0 commit comments