Add togglelist API to toggle a list item (#9)
This commit is contained in:
parent
dcaa0e1506
commit
faea75fc4f
22
api/actions/togglelist.php
Normal file
22
api/actions/togglelist.php
Normal file
@ -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" => [
|
"vars" => [
|
||||||
"id" => "/^[0-9]+$/"
|
"id" => "/^[0-9]+$/"
|
||||||
]
|
]
|
||||||
|
],
|
||||||
|
"togglelist" => [
|
||||||
|
"load" => "togglelist.php",
|
||||||
|
"vars" => [
|
||||||
|
"id" => "/^[0-9]+$/",
|
||||||
|
"text" => "string"
|
||||||
]
|
]
|
||||||
|
],
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user