21 lines
345 B
Python
21 lines
345 B
Python
from django.shortcuts import redirect
|
|
from eventplanner_gcal.models import syncGCalEvents, syncParticipationFromGoogleToLocal
|
|
|
|
|
|
def runSync( request ):
|
|
syncGCalEvents()
|
|
return redirect("/")
|
|
|
|
|
|
def gcalApiCallback( request ):
|
|
syncParticipationFromGoogleToLocal()
|
|
print ( "gcalApiCallback called" )
|
|
return redirect("/")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|