3 lines
112 B
Python
Executable File
3 lines
112 B
Python
Executable File
def has_google_calendar(user):
|
|
return hasattr(user, 'google_calender') and bool(user.google_calender.token)
|