Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16b70e00 authored by AVINASH GUSAIN's avatar AVINASH GUSAIN
Browse files

invite maybe button

parent 7f48b32f
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -25,6 +25,8 @@ declare(strict_types=1);
 */
return [
	'routes' => [
		//Maybe invitiation
		['name' => 'invitation_maybe#tentative', 'url' => '/invitation/tentative/{token}', 'verb' => 'GET'],
		// User views
		['name' => 'view#index', 'url' => '/', 'verb' => 'GET'],
		['name' => 'view#index', 'url' => '/new', 'verb' => 'GET', 'postfix' => 'direct.new'],
@@ -57,8 +59,6 @@ return [
		['name' => 'settings#setConfig', 'url' => '/v1/config/{key}', 'verb' => 'POST'],
		// Tools
		['name' => 'email#sendEmailPublicLink', 'url' => '/v1/public/sendmail', 'verb' => 'POST'],
		//Maybe invitiation
		['name' => 'invitation_maybe#tentative', 'url' => '/invitation/tentative/{token}', 'verb' => 'GET'],
	],
	'resources' => [
		'appointmentConfig' => ['url' => '/v1/appointment_configs']
+2 −1
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@

declare(strict_types=1);
namespace OCA\Calendar\Controller;

use OCA\DAV\CalDAV\InvitationResponse\InvitationResponseServer;
use OCP\AppFramework\Controller;
use OCP\AppFramework\Http\TemplateResponse;