def integration_sync(request, response_format='html'): if request.POST and 'sync' in request.POST: user = request.user.get_profile() integration.sync(user) messages.add_message(request, messages.INFO, _("You have successfully updated Calendar")) return HttpResponseRedirect(reverse('events_integration_index'))
def cron_integration(): "Run integration" try: integration.sync() except Exception: pass