MCPcopy
hub / github.com/dataelement/Clawith / add

Method add

backend/app/services/sso_service.py:289–295  ·  view source on GitHub ↗
(field: str, value: str | None)

Source from the content-addressed store, hash-verified

287 seen: set[tuple[str, str]] = set()
288
289 def add(field: str, value: str | None) -> None:
290 normalized = (value or "").strip()
291 key = (field, normalized)
292 if not normalized or key in seen:
293 return
294 seen.add(key)
295 lookup_chain.append(key)
296
297 add("unionid", raw_union_id)
298 add("external_id", raw_external_id)

Callers 15

upgradeFunction · 0.45
lifespanFunction · 0.45
configure_loggingFunction · 0.45
_ensure_providerMethod · 0.45
_create_channel_userMethod · 0.45
log_activityFunction · 0.45
_handle_messageMethod · 0.45
hook_new_org_memberFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected