Resolve #6043
This commit is contained in:
parent
7de915d47b
commit
c7c08b7511
10 changed files with 58 additions and 2 deletions
|
@ -71,6 +71,11 @@ export class Antenna {
|
|||
})
|
||||
public keywords: string[][];
|
||||
|
||||
@Column('jsonb', {
|
||||
default: []
|
||||
})
|
||||
public excludeKeywords: string[][];
|
||||
|
||||
@Column('boolean', {
|
||||
default: false
|
||||
})
|
||||
|
|
|
@ -21,6 +21,7 @@ export class AntennaRepository extends Repository<Antenna> {
|
|||
createdAt: antenna.createdAt.toISOString(),
|
||||
name: antenna.name,
|
||||
keywords: antenna.keywords,
|
||||
excludeKeywords: antenna.excludeKeywords,
|
||||
src: antenna.src,
|
||||
userListId: antenna.userListId,
|
||||
userGroupId: userGroupJoining ? userGroupJoining.userGroupId : null,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue