mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
resolve rebase conflicts
This commit is contained in:
parent
88e3d648c8
commit
31f04344fc
4 changed files with 0 additions and 5 deletions
|
|
@ -35,9 +35,6 @@ export class FolderPolicy {
|
|||
@Column('int')
|
||||
afterDays!: number
|
||||
|
||||
@Column('int')
|
||||
minimumItems!: number
|
||||
|
||||
@CreateDateColumn({
|
||||
type: 'timestamptz',
|
||||
default: () => 'CURRENT_TIMESTAMP',
|
||||
|
|
|
|||
|
|
@ -102,7 +102,6 @@ describe('Folder Policy API', () => {
|
|||
folder: 'test-folder',
|
||||
action: FolderPolicyAction.Archive,
|
||||
afterDays: 30,
|
||||
minimumItems: 10,
|
||||
}
|
||||
|
||||
const res = await graphqlRequest(mutation, authToken, { input }).expect(
|
||||
|
|
@ -160,7 +159,6 @@ describe('Folder Policy API', () => {
|
|||
id: existingPolicy.id,
|
||||
action: FolderPolicyAction.Delete,
|
||||
afterDays: 30,
|
||||
minimumItems: 10,
|
||||
}
|
||||
|
||||
const res = await graphqlRequest(mutation, authToken, { input }).expect(
|
||||
|
|
|
|||
Loading…
Reference in a new issue