Update Context to accept External Identity Provider. (#127)

* rename .account_id() to .id()

* Create logos-traits crate

* Remove AccountId references

* external IdentityProvider for Context

* Fix compile errors from merge

* Update logos-traits to shared-traits

* format fixes

* warnings cleanup

* clippy fix

* Remove rebase artifact
This commit is contained in:
Jazz Turner-Baggs
2026-06-10 06:59:04 -07:00
committed by GitHub
parent 0e72fdf483
commit a610117e81
27 changed files with 297 additions and 222 deletions
@@ -67,7 +67,7 @@ impl RegistrationService for EphemeralRegistry {
self.registry
.lock()
.unwrap()
.insert(identity.account_id().to_string(), key_bundle);
.insert(identity.id().to_string(), key_bundle);
Ok(())
}