Merge pull request #23583 from nextcloud/backport/23580/stable20
[stable20] Also expire share type email
This commit is contained in:
commit
5a7a0a2f64
|
@ -60,7 +60,10 @@ class ExpireSharesJob extends TimedJob {
|
|||
->from('share')
|
||||
->where(
|
||||
$qb->expr()->andX(
|
||||
$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()->orX(
|
||||
$qb->expr()->eq('item_type', $qb->expr()->literal('file')),
|
||||
|
|
Loading…
Reference in New Issue