mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-23 05:56:18 +00:00
remove persist() for PATCH and DELETE
This commit is contained in:
parent
2c093b03de
commit
c0284f6182
1 changed files with 0 additions and 2 deletions
|
@ -140,7 +140,6 @@ class WallabagRestController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
$em = $this->getDoctrine()->getManager();
|
$em = $this->getDoctrine()->getManager();
|
||||||
$em->persist($entry);
|
|
||||||
$em->flush();
|
$em->flush();
|
||||||
|
|
||||||
return $entry;
|
return $entry;
|
||||||
|
@ -163,7 +162,6 @@ class WallabagRestController extends Controller
|
||||||
|
|
||||||
$em = $this->getDoctrine()->getManager();
|
$em = $this->getDoctrine()->getManager();
|
||||||
$entry->setDeleted(1);
|
$entry->setDeleted(1);
|
||||||
$em->persist($entry);
|
|
||||||
$em->flush();
|
$em->flush();
|
||||||
|
|
||||||
return $entry;
|
return $entry;
|
||||||
|
|
Loading…
Reference in a new issue