add getNotes method for open notes table
This commit is contained in:
		| @@ -198,7 +198,7 @@ class AjaxController extends AbstractController | ||||
|     { | ||||
|         $res = new Response(); | ||||
|         $data = json_decode($req->getContent()); | ||||
|         $ref = $emi->getRepository(Reference::class)->find($data->file); | ||||
|         $ref = $emi->getRepository(Reference::class)->find($data->id); | ||||
|  | ||||
|         if (!is_a($ref, Reference::class)) { | ||||
|             $ref = new Reference(); | ||||
| @@ -247,6 +247,18 @@ class AjaxController extends AbstractController | ||||
|         return $res; | ||||
|     } | ||||
|  | ||||
|     #[Route('/get-notes', name: 'app_get_notes')] | ||||
|     public function getNotes(EntityManagerInterface $emi): Response | ||||
|     { | ||||
|         /** @var User $user */ | ||||
|         $user = $this->getUser(); | ||||
|         $notes = $emi->getRepository(Note::class)->reverseNoteSort($user); | ||||
|         $res = new Response(); | ||||
|         $res->setContent(json_encode(['data'=> $notes])); | ||||
|  | ||||
|         return $res; | ||||
|     } | ||||
|  | ||||
|     #[Route('/get-note', name: 'app_get_note')] | ||||
|     public function getNote(Request $req, EntityManagerInterface $emi): Response | ||||
|     { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user