From c6a5c07041d2e5d20771409aede8b755d28372ac Mon Sep 17 00:00:00 2001 From: Cyrille Bollu Date: Sat, 5 Feb 2022 20:49:17 +0100 Subject: Adds a "Request password" button to the public share authentication page for shares of type TYPE_EMAIL, when the "video verification" checkbox isn't checked. Users accessing non-anonymous public shares (TYPE_EMAIL shares) can now request a temporary password themselves. - Creates a migration step for the files_sharing app to add the 'password_expiration_time' attribute to the oc_shares table. - Makes share temporary passwords' expiration time configurable via a system value. - Adds a system config value to allow permanent share passwords -Fixes a typo in a comment in apps/files_sharing/src/components/SharingEntryLink.vue See https://github.com/nextcloud/server/issues/31005 Signed-off-by: Cyrille Bollu --- tests/lib/AppFramework/Controller/AuthPublicShareControllerTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/lib/AppFramework/Controller/AuthPublicShareControllerTest.php b/tests/lib/AppFramework/Controller/AuthPublicShareControllerTest.php index c0aea813243..c8adef80966 100644 --- a/tests/lib/AppFramework/Controller/AuthPublicShareControllerTest.php +++ b/tests/lib/AppFramework/Controller/AuthPublicShareControllerTest.php @@ -63,7 +63,9 @@ class AuthPublicShareControllerTest extends \Test\TestCase { 'isPasswordProtected', 'isValidToken', 'showShare', - 'verifyPassword' + 'verifyPassword', + 'validateIdentity', + 'generatePassword' ])->getMock(); } -- cgit v1.2.3