]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Owa.php
Decouple conversation creation from rendering
[friendica.git] / src / Module / Owa.php
index 6062f2c998a32b6de67ef23a3098c1e0794d34f1..69abd8e871fb5a2aa4640029b17199647f4d264c 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -44,7 +44,7 @@ use Friendica\Util\Strings;
  */
 class Owa extends BaseModule
 {
-       public function rawContent()
+       protected function rawContent(array $request = [])
        {
                $ret = [ 'success' => false ];
 
@@ -80,12 +80,12 @@ class Owa extends BaseModule
                                                                $ret['success'] = true;
                                                                $token = Strings::getRandomHex(32);
 
-                                                               // Store the generated token in the databe.
+                                                               // Store the generated token in the database.
                                                                OpenWebAuthToken::create('owt', 0, $token, $contact['addr']);
 
                                                                $result = '';
 
-                                                               // Encrypt the token with the public contacts publik key.
+                                                               // Encrypt the token with the public contacts public key.
                                                                // Only the specific public contact will be able to encrypt it.
                                                                // At a later time, we will compare weather the token we're getting
                                                                // is really the same token we have stored in the database.