MCPcopy Index your code
hub / github.com/diffgram/diffgram / bind_to_oidc_login

Method bind_to_oidc_login

shared/database/user.py:165–168  ·  view source on GitHub ↗
(self, session, oidc_id)

Source from the content-addressed store, hash-verified

163 return False
164
165 def bind_to_oidc_login(self, session, oidc_id):
166 self.oidc_id = oidc_id
167 session.add(self)
168 return self
169
170 def get_profile_image_url(self):
171 if (self.profile_image_expiry is None or self.profile_image_expiry <= time.time()) and self.profile_image_blob:

Callers 1

api_oidc_callbackFunction · 0.80

Calls 1

addMethod · 0.45

Tested by

no test coverage detected