1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

Export dates from entries

This commit is contained in:
Jeremy Benoist 2016-09-08 16:38:08 +02:00
parent 6f23289e72
commit 9401696fe4
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
5 changed files with 61 additions and 4 deletions

View file

@ -101,7 +101,7 @@ class Entry
*
* @ORM\Column(name="created_at", type="datetime")
*
* @Groups({"export_all"})
* @Groups({"entries_for_user", "export_all"})
*/
private $createdAt;
@ -110,7 +110,7 @@ class Entry
*
* @ORM\Column(name="updated_at", type="datetime")
*
* @Groups({"export_all"})
* @Groups({"entries_for_user", "export_all"})
*/
private $updatedAt;