Merge pull request #3140 from omnivore-app/fix/admin-integration-tokens

Add integration token to admin
This commit is contained in:
Jackson Harper 2023-11-17 15:09:56 +08:00 committed by GitHub
commit efc2784e4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -248,6 +248,9 @@ export class Integration extends BaseEntity {
@Column('varchar', { length: 40 })
name!: string
@Column('varchar', { length: 255 })
token!: string
@Column('boolean', { default: true })
enabled!: boolean