diff options
author | emkael <emkael@tlen.pl> | 2016-04-14 13:17:22 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-04-14 13:17:22 +0200 |
commit | 60342c7d0e70f569f12dbf5def2343ed5d010511 (patch) | |
tree | b7954ef3b46b145ef4a24d9aabe8feebc2b56a9b /app/php/model/Entry.php | |
parent | 769147bbd06dc8a95f24007eb8cba646a1002bb4 (diff) |
* iCal entry modification date stored in model
Diffstat (limited to 'app/php/model/Entry.php')
-rw-r--r-- | app/php/model/Entry.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/php/model/Entry.php b/app/php/model/Entry.php index 3106e8e..4b93f04 100644 --- a/app/php/model/Entry.php +++ b/app/php/model/Entry.php @@ -14,6 +14,7 @@ class Entry extends ActiveRecord { public $AllDay; public $Name; public $Location; + public $LastModified; public $CalendarID; @@ -25,6 +26,7 @@ class Entry extends ActiveRecord { 'all_day' => 'AllDay', 'name' => 'Name', 'location' => 'Location', + 'last_modified' => 'LastModified', '_calendar' => 'CalendarID' ]; |