clockify api triggers signed in when successfully signed

This commit is contained in:
iLLiCiTiT 2019-08-14 16:43:57 +02:00
parent 706ca52618
commit 995d596fb8

View file

@ -44,6 +44,8 @@ class ClockifyAPI(metaclass=Singleton):
if api_key is not None and self.validate_api_key(api_key) is True:
self.headers["X-Api-Key"] = api_key
self.set_workspace()
if self.master_parent:
self.master_parent.signed_in()
return True
return False