aboutsummaryrefslogtreecommitdiffstats
path: root/access/insert.py
diff options
context:
space:
mode:
Diffstat (limited to 'access/insert.py')
-rw-r--r--access/insert.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/access/insert.py b/access/insert.py
index 02c88cf..5e78798 100644
--- a/access/insert.py
+++ b/access/insert.py
@@ -29,6 +29,7 @@ class InsertEvent(webapp2.RequestHandler):
day = thisbegindate
);
thisdatafrom = self.request.get('datafrom')
+ thisremind = self.request.get('remind')
newcalevent = CalEvent(
db.Key.from_path('user', guserid.email()),
@@ -39,6 +40,7 @@ class InsertEvent(webapp2.RequestHandler):
newcalevent.title = thistitle
newcalevent.icon = thisicon
+ newcalevent.remind = thisremind
newcalevent.put()