tangled
alpha
login
or
join now
t1c.dev
/
rocksky
forked from
rocksky.app/rocksky
2
fork
atom
A decentralized music tracking and discovery platform built on AT Protocol 🎵
2
fork
atom
overview
issues
pulls
pipelines
Merge branch 'main' into feat/feed-generator
tsiry-sandratraina.com
4 months ago
a20b1d92
fbcd8221
+2
-2
1 changed file
expand all
collapse all
unified
split
apps
api
src
auth
storage.ts
+2
-2
apps/api/src/auth/storage.ts
···
26
26
.execute();
27
27
}
28
28
async del(key: string) {
29
29
-
// await this.db.deleteFrom("auth_state").where("key", "=", key).execute();
29
29
+
await this.db.deleteFrom("auth_state").where("key", "=", key).execute();
30
30
}
31
31
}
32
32
···
52
52
.execute();
53
53
}
54
54
async del(key: string) {
55
55
-
// await this.db.deleteFrom("auth_session").where("key", "=", key).execute();
55
55
+
await this.db.deleteFrom("auth_session").where("key", "=", key).execute();
56
56
}
57
57
}