Skip to content

Commit

Permalink
feat: add exclusiveness to timeline model (#974)
Browse files Browse the repository at this point in the history
  • Loading branch information
RiXelanya authored Oct 17, 2024
1 parent f343f73 commit b67661c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/models/experience.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,13 @@ export class Experience extends Entity {
})
deletedAt?: string;

@property({
type: 'boolean',
required: false,
default: false,
})
exclusive?: boolean;

@belongsTo(() => User, {name: 'user'}, {required: true})
createdBy: string;

Expand Down

0 comments on commit b67661c

Please sign in to comment.