1
0
Fork 0
mirror of synced 2024-06-02 19:04:49 +12:00

Removed TODOs, fixed comments

This commit is contained in:
Eldad Fux 2021-07-16 07:39:31 +03:00
parent 04d6d33f60
commit b4a65c2c1a
6 changed files with 7 additions and 8 deletions

View file

@ -1371,7 +1371,7 @@ App::post('/v1/account/recovery')
$profile = $dbForInternal->findFirst('users', [new Query('email', Query::TYPE_EQUAL, [$email])], 1); // Get user by email address
if (!$profile) {
throw new Exception('User not found', 404); // TODO maybe hide this
throw new Exception('User not found', 404);
}
if (Auth::USER_STATUS_BLOCKED == $profile->getAttribute('status')) { // Account is blocked
@ -1482,7 +1482,7 @@ App::put('/v1/account/recovery')
$profile = $dbForInternal->getDocument('users', $userId);
if ($profile->isEmpty()) {
throw new Exception('User not found', 404); // TODO maybe hide this
throw new Exception('User not found', 404);
}
$tokens = $profile->getAttribute('tokens', []);
@ -1662,7 +1662,7 @@ App::put('/v1/account/verification')
$profile = $dbForInternal->getDocument('users', $userId);
if ($profile->isEmpty()) {
throw new Exception('User not found', 404); // TODO maybe hide this
throw new Exception('User not found', 404);
}
$tokens = $profile->getAttribute('tokens', []);

View file

@ -143,7 +143,6 @@ App::get('/v1/functions/:functionId/usage')
->action(function ($functionId, $range, $response, $project, $dbForInternal, $register) {
/** @var Appwrite\Utopia\Response $response */
/** @var Appwrite\Database\Document $project */
/** @var Utopia\Database\Database $consoleDB */
/** @var Utopia\Database\Database $dbForInternal */
/** @var Utopia\Registry\Registry $register */

View file

@ -57,7 +57,7 @@ App::init(function ($utopia, $request, $response, $console, $project, $dbForCons
$certificate = $dbForConsole->createDocument('certificates', $certificate);
Authorization2::enable();
Console::info('Issuing a TLS certificate for the master domain (' . $domain->get() . ') in a few seconds...'); // TODO move this to installation script
Console::info('Issuing a TLS certificate for the master domain (' . $domain->get() . ') in a few seconds...');
Resque::enqueue('v1-certificates', 'CertificatesV1', [
'document' => $certificate,

View file

@ -123,7 +123,7 @@ Console::info(count($list)." functions listed in " . ($executionEnd - $execution
* 7. Trigger usage log - DONE
*/
//TODO aviod scheduled execution if delay is bigger than X offest
//TODO avoid scheduled execution if delay is bigger than X offest
class FunctionsV1 extends Worker
{

View file

@ -96,7 +96,7 @@ class Task extends Model
])
->addRule('status', [
'type' => self::TYPE_STRING,
'description' => 'Task status. Possible values: play, pause', // TODO - change to enabled disabled
'description' => 'Task status. Possible values: play, pause',
'default' => '',
'example' => 'enabled',
])

View file

@ -28,7 +28,7 @@ class Team extends Model
'default' => 0,
'example' => 1592981250,
])
->addRule('sum', [ // TODO change key name?
->addRule('sum', [
'type' => self::TYPE_INTEGER,
'description' => 'Total sum of team members.',
'default' => 0,