File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
- feat: add localhost to supported chains
4
4
- fix: fix bug regarding retry fetch behavior
5
+ - chore: update ` arkiver list ` command
5
6
6
7
# v0.4.4
7
8
Original file line number Diff line number Diff line change @@ -29,14 +29,16 @@ export const action = async () => {
29
29
throw new Error ( 'Not logged in' )
30
30
}
31
31
32
+ const username = await getUsername ( userRes . data . user . id ) ;
33
+
32
34
const headers = new Headers ( )
33
35
headers . append (
34
36
'Authorization' ,
35
37
`Bearer ${ sessionRes . data . session . access_token } ` ,
36
38
)
37
39
38
40
const listRes = await fetch (
39
- new URL ( `/arkives` , SUPABASE_FUNCTIONS_URL ) ,
41
+ new URL ( `/arkives/ ${ username } ` , SUPABASE_FUNCTIONS_URL ) ,
40
42
{
41
43
method : 'GET' ,
42
44
headers,
@@ -101,3 +103,18 @@ const listDev = async () => {
101
103
102
104
Deno . exit ( )
103
105
}
106
+
107
+ export const getUsername = async ( userId : string ) => {
108
+ const supabase = getSupabaseClient ( ) ;
109
+ const profileRes = await supabase
110
+ . from ( "user_profile" )
111
+ . select < "username" , { username : string } > ( "username" )
112
+ . eq ( "id" , userId )
113
+ . single ( ) ;
114
+
115
+ if ( profileRes . error ) {
116
+ throw profileRes . error ;
117
+ }
118
+
119
+ return profileRes . data . username ;
120
+ } ;
You can’t perform that action at this time.
0 commit comments