Skip to content

Commit

Permalink
Merge branch 'list-linked-hive-accounts' of https://github.com/spknet…
Browse files Browse the repository at this point in the history
…work/acela-core into list-linked-hive-accounts
  • Loading branch information
Christopher Graney-Ward committed Jun 16, 2024
2 parents 63227cd + 309473a commit 0f3ec1c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export type LinkedAccountDocument = HydratedDocument<LinkedAccount>;

@Schema()
export class LinkedAccount {
@Prop({ required: true, default: 'unferified', enum: ['verified', 'unverified'] })
status: string;
@Prop({ required: true, default: 'unverified', enum: ['verified', 'unverified'] })
status: 'verified' | 'unverified';

@Prop({ required: true })
account: string;
Expand Down

0 comments on commit 0f3ec1c

Please sign in to comment.