9 lines
164 B
Python
9 lines
164 B
Python
from django.shortcuts import redirect
|
|
|
|
from eventplanner_gcal.models import syncGCalEvents
|
|
|
|
def runSync( request ):
|
|
syncGCalEvents()
|
|
return redirect("/")
|
|
|