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