You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
556 B
28 lines
556 B
import { Column, Entity, ManyToOne, PrimaryGeneratedColumn } from 'typeorm';
|
|
import { User } from './User';
|
|
|
|
@Entity()
|
|
export class UserPushSubscription {
|
|
@PrimaryGeneratedColumn()
|
|
public id: number;
|
|
|
|
@ManyToOne(() => User, (user) => user.pushSubscriptions, {
|
|
eager: true,
|
|
onDelete: 'CASCADE',
|
|
})
|
|
public user: User;
|
|
|
|
@Column()
|
|
public endpoint: string;
|
|
|
|
@Column()
|
|
public p256dh: string;
|
|
|
|
@Column({ unique: true })
|
|
public auth: string;
|
|
|
|
constructor(init?: Partial<UserPushSubscription>) {
|
|
Object.assign(this, init);
|
|
}
|
|
}
|