Add togglelist API to toggle a list item (#9)

master
Skylar Ittner 5 years ago
parent dcaa0e1506
commit faea75fc4f

@ -0,0 +1,22 @@
<?php
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
try {
$note = Note::loadNote($VARS['id']);
} catch (NoSuchNoteException $ex) {
sendJsonResp($Strings->get("Note does not exist", false), "ERROR");
}
if (!$note->hasWriteAccess(getRequestUser())) {
sendJsonResp($Strings->get("You don't have permission to edit this note.", false), "ERROR");
}
$note->toggleChecklistItem($VARS['text']);
$note->saveNote();
sendJsonResp($Strings->get("Note saved", false), "OK", ["note" => $note->toArray()]);

@ -52,5 +52,12 @@ $APIS = [
"vars" => [
"id" => "/^[0-9]+$/"
]
]
],
"togglelist" => [
"load" => "togglelist.php",
"vars" => [
"id" => "/^[0-9]+$/",
"text" => "string"
]
],
];

Loading…
Cancel
Save