aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/Entry.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-09-08 16:38:08 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-09-08 16:49:21 +0200
commit9401696fe4ac78863fa5318de9cd9765c3a139bf (patch)
tree84fae8a20d5203e6c58fdc7e67f56404e1eacfe2 /src/Wallabag/CoreBundle/Entity/Entry.php
parent6f23289e721bd14710af1acc23466432c1312850 (diff)
downloadwallabag-9401696fe4ac78863fa5318de9cd9765c3a139bf.tar.gz
wallabag-9401696fe4ac78863fa5318de9cd9765c3a139bf.tar.zst
wallabag-9401696fe4ac78863fa5318de9cd9765c3a139bf.zip
Export dates from entries
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/Entry.php')
-rw-r--r--src/Wallabag/CoreBundle/Entity/Entry.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Entry.php b/src/Wallabag/CoreBundle/Entity/Entry.php
index 4d7e001b..c3e6b4d5 100644
--- a/src/Wallabag/CoreBundle/Entity/Entry.php
+++ b/src/Wallabag/CoreBundle/Entity/Entry.php
@@ -101,7 +101,7 @@ class Entry
101 * 101 *
102 * @ORM\Column(name="created_at", type="datetime") 102 * @ORM\Column(name="created_at", type="datetime")
103 * 103 *
104 * @Groups({"export_all"}) 104 * @Groups({"entries_for_user", "export_all"})
105 */ 105 */
106 private $createdAt; 106 private $createdAt;
107 107
@@ -110,7 +110,7 @@ class Entry
110 * 110 *
111 * @ORM\Column(name="updated_at", type="datetime") 111 * @ORM\Column(name="updated_at", type="datetime")
112 * 112 *
113 * @Groups({"export_all"}) 113 * @Groups({"entries_for_user", "export_all"})
114 */ 114 */
115 private $updatedAt; 115 private $updatedAt;
116 116