Compare commits
1 Commits
77ee132983
...
bc98637dcf
Author | SHA1 | Date |
---|---|---|
Shadowfacts | bc98637dcf |
|
@ -56,8 +56,8 @@ export interface ActorObject {
|
||||||
endpoints?: {
|
endpoints?: {
|
||||||
sharedInbox?: string;
|
sharedInbox?: string;
|
||||||
}
|
}
|
||||||
publicKey?: {
|
publicKey: {
|
||||||
publicKeyPem?: string;
|
publicKeyPem: string;
|
||||||
};
|
};
|
||||||
icon: string | object | (string | object)[];
|
icon: string | object | (string | object)[];
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,8 +23,8 @@ export default class Actor {
|
||||||
@Column()
|
@Column()
|
||||||
iconURL: string;
|
iconURL: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column()
|
||||||
publicKeyPem: string | null;
|
publicKeyPem: string;
|
||||||
|
|
||||||
@OneToMany(type => Note, note => note.actor)
|
@OneToMany(type => Note, note => note.actor)
|
||||||
notes: Note[];
|
notes: Note[];
|
||||||
|
|
Loading…
Reference in New Issue