summary refs log tree commit diff
path: root/src/util/entities/ConnectedAccount.ts
blob: 018b3995e065d0ee04b73f8c249fb94a06880079 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { BaseClass } from "./BaseClass";
import { User } from "./User";

export interface PublicConnectedAccount extends Pick<ConnectedAccount, "name" | "type" | "verified"> {}

@Entity("connected_accounts")
export class ConnectedAccount extends BaseClass {
	@Column({ nullable: true })
	@RelationId((account: ConnectedAccount) => account.user)
	user_id: string;

	@JoinColumn({ name: "user_id" })
	@ManyToOne(() => User, {
		onDelete: "CASCADE"
	})
	user: User;

	@Column({ select: false })
	access_token: string;

	@Column({ select: false })
	friend_sync: boolean;

	@Column()
	name: string;

	@Column({ select: false })
	revoked: boolean;

	@Column({ select: false })
	show_activity: boolean;

	@Column()
	type: string;

	@Column()
	verified: boolean;

	@Column({ select: false })
	visibility: number;
}