Completed
Pull Request — master (#6811)
by Georg
18:01 queued 01:46
created
apps/dav/appinfo/v1/caldav.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
 $server->addPlugin(new \OCA\DAV\CalDAV\Schedule\Plugin());
88 88
 
89 89
 if ($sendInvitations) {
90
-	$server->addPlugin(new \OCA\DAV\CalDAV\Schedule\IMipPlugin( \OC::$server->getMailer(), \OC::$server->getLogger(), new \OC\AppFramework\Utility\TimeFactory()));
90
+	$server->addPlugin(new \OCA\DAV\CalDAV\Schedule\IMipPlugin(\OC::$server->getMailer(), \OC::$server->getLogger(), new \OC\AppFramework\Utility\TimeFactory()));
91 91
 }
92 92
 
93 93
 $server->addPlugin(new ExceptionLoggerPlugin('caldav', \OC::$server->getLogger()));
Please login to merge, or discard this patch.
apps/dav/lib/Controller/AdminSettingsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
 	 * @param boolean $sendInvitations
55 55
 	 * @return JSONResponse
56 56
 	 */
57
-	public function setSendInvitations($sendInvitations)  {
57
+	public function setSendInvitations($sendInvitations) {
58 58
 		if ($sendInvitations === null) {
59 59
 			return new JSONResponse([], Http::STATUS_BAD_REQUEST);
60 60
 		}
Please login to merge, or discard this patch.
apps/dav/appinfo/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
 
24 24
 return [
25 25
 	'routes' => [
26
-		[ 'name' => 'AdminSettings#setSendInvitations', 'url' => '/setSendInvitations', 'verb' => 'POST' ],
26
+		['name' => 'AdminSettings#setSendInvitations', 'url' => '/setSendInvitations', 'verb' => 'POST'],
27 27
 	]
28 28
 ];
Please login to merge, or discard this patch.