Also expire share type email
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
2005119af2
commit
2aa69ba895
|
@ -60,7 +60,10 @@ class ExpireSharesJob extends TimedJob {
|
||||||
->from('share')
|
->from('share')
|
||||||
->where(
|
->where(
|
||||||
$qb->expr()->andX(
|
$qb->expr()->andX(
|
||||||
$qb->expr()->eq('share_type', $qb->expr()->literal(IShare::TYPE_LINK)),
|
$qb->expr()->orX(
|
||||||
|
$qb->expr()->eq('share_type', $qb->expr()->literal(IShare::TYPE_LINK)),
|
||||||
|
$qb->expr()->eq('share_type', $qb->expr()->literal(IShare::TYPE_EMAIL))
|
||||||
|
),
|
||||||
$qb->expr()->lte('expiration', $qb->expr()->literal($now)),
|
$qb->expr()->lte('expiration', $qb->expr()->literal($now)),
|
||||||
$qb->expr()->orX(
|
$qb->expr()->orX(
|
||||||
$qb->expr()->eq('item_type', $qb->expr()->literal('file')),
|
$qb->expr()->eq('item_type', $qb->expr()->literal('file')),
|
||||||
|
|
Loading…
Reference in New Issue