Skip to content

Commit 9afb874

Browse files
committed
update public interface with new methods
Signed-off-by: Robin Appelman <robin@icewind.nl>
1 parent d1b1a09 commit 9afb874

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

lib/public/Share/IManager.php

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,54 @@ public function shareApiLinkDefaultExpireDateEnforced();
346346
*/
347347
public function shareApiLinkDefaultExpireDays();
348348

349+
/**
350+
* Is default internal expire date enabled
351+
*
352+
* @return bool
353+
* @since 22.0.0
354+
*/
355+
public function shareApiInternalDefaultExpireDate(): bool;
356+
357+
/**
358+
* Is default remote expire date enabled
359+
*
360+
* @return bool
361+
* @since 22.0.0
362+
*/
363+
public function shareApiRemoteDefaultExpireDate(): bool;
364+
365+
/**
366+
* Is default expire date enforced
367+
*
368+
* @return bool
369+
* @since 22.0.0
370+
*/
371+
public function shareApiInternalDefaultExpireDateEnforced(): bool;
372+
373+
/**
374+
* Is default expire date enforced for remote shares
375+
*
376+
* @return bool
377+
* @since 22.0.0
378+
*/
379+
public function shareApiRemoteDefaultExpireDateEnforced(): bool;
380+
381+
/**
382+
* Number of default expire days
383+
*
384+
* @return int
385+
* @since 22.0.0
386+
*/
387+
public function shareApiInternalDefaultExpireDays(): int;
388+
389+
/**
390+
* Number of default expire days for remote shares
391+
*
392+
* @return int
393+
* @since 22.0.0
394+
*/
395+
public function shareApiRemoteDefaultExpireDays(): int;
396+
349397
/**
350398
* Allow public upload on link shares
351399
*

0 commit comments

Comments
 (0)