- Nov 12, 2020
-
-
Daniel Calviño Sánchez authored
Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
Daniel Calviño Sánchez authored
The enforced expiration date was not actually enabled, as for that "shareapi_default_expire_date" needs to be explicitly set to "yes". Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
Daniel Calviño Sánchez authored
The test should fail if no exception was thrown, and no exception was thrown due to a missing configuration parameter. However, the use of "addToAssertionCount(1)" made the test pass even if no exception was thrown and, therefore, to silently fail. Now the missing configuration parameter was added and the test will fail if the expected exception is not thrown. Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
Daniel Calviño Sánchez authored
Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
Daniel Calviño Sánchez authored
Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
Daniel Calviño Sánchez authored
Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
Daniel Calviño Sánchez authored
Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
Daniel Calviño Sánchez authored
Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
Christoph Wurst authored
Pimp the accesibility controller
-
Nextcloud bot authored
-
- Nov 11, 2020
-
-
Morris Jobke authored
Change to full class names for the encryption app DI in preparation of auto-wiring
-
Roeland Jago Douma authored
* No usused members * appRoot member * less constructor args Signed-off-by:
Roeland Jago Douma <roeland@famdouma.nl>
-
Roeland Jago Douma authored
ReflectionParamter::getClass is deprecated
-
Morris Jobke authored
Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
Roeland Jago Douma authored
In php8 this starts throwing warnings. And since we use it quite often we flood the log. This moves it to getType which does the same. Only non deprecated now. Signed-off-by:
Roeland Jago Douma <roeland@famdouma.nl>
-
Morris Jobke authored
Revert "Installation goes brrrr"
-
Christoph Wurst authored
-
Morris Jobke authored
Manually iterate over calendardata when oracle is used
-
Julius Härtl authored
Signed-off-by:
Julius Härtl <jus@bitgrid.net>
-
Joas Schilling authored
Installation goes brrrr
-
Morris Jobke authored
Use png icons in caldav reminder emails
-
Morris Jobke authored
Remove unused and deprecated methods from files_external MountConfig
-
Joas Schilling authored
Signed-off-by:
Joas Schilling <coding@schilljs.com>
-
Joas Schilling authored
Signed-off-by:
Joas Schilling <coding@schilljs.com>
-
Joas Schilling authored
Signed-off-by:
Joas Schilling <coding@schilljs.com>
-
Julius Härtl authored
Remove old OC_Hook for OC_Group events
-
Joas Schilling authored
Run unit tests against oracle
-
Julius Härtl authored
Merge pull request #24042 from nextcloud/fix-sharing-tab-state-not-matching-resharing-admin-settings
-
Nextcloud bot authored
-
Daniel Calviño Sánchez authored
Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
Daniel Calviño Sánchez authored
Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
Daniel Calviño Sánchez authored
Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
Daniel Calviño Sánchez authored
Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
- Nov 10, 2020
-
-
Morris Jobke authored
Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
Daniel Calviño Sánchez authored
Signed-off-by:
Daniel Calviño Sánchez <danxuliu@gmail.com>
-
Morris Jobke authored
Those mappings exist and we will remove the first ones (labeled as `old`): old: `\OC_Hook::listen('OC_Group', 'pre_createGroup', array('run' => true, 'gid' => $gid));` since OC 8 (owncloud/core#12618): `$groupManager->listen('\OC\Group', 'preCreate', function ($gid) { ... });` since NC 17 (#18350): `OCP\Group\Events\BeforeGroupCreatedEvent` old: `\OC_Hook::emit('OC_User', 'post_createGroup', array('gid' => $gid->getGID()));` since OC 8 (owncloud/core#12618): `$groupManager->listen('\OC\Group', 'postCreate', function (\OC\Group\Group $gid) { ... });` since NC 17 (#18350): `OCP\Group\Events\GroupCreatedEvent` old: `\OC_Hook::emit('OC_Group', 'pre_deleteGroup', array('run' => true, 'gid' => $group->getGID()));` since OC 8 (owncloud/core#12618): `$groupManager->listen('\OC\Group', 'preDelete', function (\OC\Group\Group $group) { ... });` since NC 17 (#18350): `OCP\Group\Events\BeforeGroupDeletedEvent` old: `\OC_Hook::emit('OC_User', 'post_deleteGroup', array('gid' => $group->getGID()));` since OC 8 (owncloud/core#12618): `$groupManager->listen('\OC\Group', 'postDelete', function (\OC\Group\Group $group) { ... });` since NC 17 (#18350): `OCP\Group\Events\GroupDeletedEvent` old: `\OC_Hook::emit('OC_Group', 'pre_addToGroup', array('run' => true, 'uid' => $user->getUID(), 'gid' => $group->getGID()));` since OC 8 (owncloud/core#12618): `$groupManager->listen('\OC\Group', 'preAddUser', function (\OC\Group\Group $group, \OC\User\User $user) { ... });` since NC 17 (#18350): `OCP\Group\Events\BeforeUserAddedEvent` old: `\OC_Hook::emit('OC_Group', 'post_addToGroup', array('uid' => $user->getUID(), 'gid' => $group->getGID()));` since OC 8 (owncloud/core#12618): `$groupManager->listen('\OC\Group', 'postAddUser', function (\OC\Group\Group $group, \OC\User\User $user) { ... });` since NC 17 (#18350): `OCP\Group\Events\UserAddedEvent` Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
Joas Schilling authored
Signed-off-by:
Joas Schilling <coding@schilljs.com>
-
Joas Schilling authored
Signed-off-by:
Joas Schilling <coding@schilljs.com>
-
Morris Jobke authored
Do not print deprecation warnings during testing
-
Joas Schilling authored
Signed-off-by:
Joas Schilling <coding@schilljs.com>
-