mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
feat(api): user authentication
This commit is contained in:
parent
f14eda16ac
commit
f253a66f86
41 changed files with 657 additions and 338 deletions
12
src/sources/spotify/spotify-connection.entity.ts
Normal file
12
src/sources/spotify/spotify-connection.entity.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { Column } from "typeorm";
|
||||
|
||||
export class SpotifyConnection {
|
||||
@Column()
|
||||
id: string;
|
||||
|
||||
@Column()
|
||||
accessToken: string;
|
||||
|
||||
@Column()
|
||||
refreshToken: string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue