mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 10:33:09 +02:00
d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
33 lines
624 B
TypeScript
33 lines
624 B
TypeScript
import { PrimaryColumn, Entity, JoinColumn, Column, OneToOne } from 'typeorm';
|
|
import { User } from './user.js';
|
|
import { id } from '../id.js';
|
|
|
|
@Entity()
|
|
export class UserKeypair {
|
|
@PrimaryColumn(id())
|
|
public userId: User['id'];
|
|
|
|
@OneToOne(type => User, {
|
|
onDelete: 'CASCADE',
|
|
})
|
|
@JoinColumn()
|
|
public user: User | null;
|
|
|
|
@Column('varchar', {
|
|
length: 4096,
|
|
})
|
|
public publicKey: string;
|
|
|
|
@Column('varchar', {
|
|
length: 4096,
|
|
})
|
|
public privateKey: string;
|
|
|
|
constructor(data: Partial<UserKeypair>) {
|
|
if (data == null) return;
|
|
|
|
for (const [k, v] of Object.entries(data)) {
|
|
(this as any)[k] = v;
|
|
}
|
|
}
|
|
}
|