remove server-side cron

This commit is contained in:
Tyler Renelle 2012-08-06 09:32:21 -04:00
parent 364641740a
commit 39088570ce

View file

@ -82,11 +82,3 @@ expressApp
expressApp.all '*', (req) ->
throw "404: #{req.url}"
# Would implement cron here, using node-cron & https://github.com/codeparty/derby/issues/99#issuecomment-6596460
# But it's not working
# cronJob = require("cron").CronJob
# model = store.createModel()
# new cronJob("* * * * * *", ->
# model.get() #TODO this returns {}, can't seem to access the data
# , null, true, "America/Los_Angeles")