Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: introduce use_did and use_did_method #2862

Merged
merged 23 commits into from
Apr 8, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
239ba8f
refactor: introduce use_did and use_did_method
dbluhm Apr 1, 2024
15f3e10
feat: oob route updates for use_did, use_did_method
dbluhm Apr 2, 2024
e61e709
fix: comment out create_unique_did for now in int tests
dbluhm Apr 3, 2024
4da0cb6
feat: remove emit args
dbluhm Apr 4, 2024
ccd92d8
refactor: delegate param checking to invite creator
dbluhm Apr 4, 2024
c2b1b80
fix: use_did_method is body param
dbluhm Apr 4, 2024
b15407a
fix: use_did_method should be none when not set
dbluhm Apr 4, 2024
e9f6e7b
fix: omit use_did_method when none
dbluhm Apr 4, 2024
a03db24
fix: condition for create_unique_did
dbluhm Apr 4, 2024
a52cf65
fix: more random dids
dbluhm Apr 4, 2024
c020a79
fix: move emit flag in issue cred test defs
dbluhm Apr 4, 2024
92f0187
feat: don't remove type info from agent message on deserialize
dbluhm Apr 4, 2024
eb7ee17
fix: conductor invite creation tests
dbluhm Apr 4, 2024
30fea83
fix: agent message tests with bad type
dbluhm Apr 4, 2024
5228382
fix: route manager test with updated params to route_verkey
dbluhm Apr 4, 2024
a2b69be
fix: remove out of spec attr for invitation message tests
dbluhm Apr 4, 2024
7f5eae7
fix: oob manager test failures
dbluhm Apr 4, 2024
536b650
fix: brittle test expected params in oob test routes
dbluhm Apr 4, 2024
58a5f62
fix: bad field on inv message
dbluhm Apr 4, 2024
ff8a613
test: invite creator config
dbluhm Apr 4, 2024
85f01f0
feat: implement auto-accept behavior
dbluhm Apr 4, 2024
fd73dd6
fix: a few critical tweaks
dbluhm Apr 8, 2024
27ed8f3
feat: new doc detailing qualified did use
dbluhm Apr 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: omit use_did_method when none
Signed-off-by: Daniel Bluhm <[email protected]>
  • Loading branch information
dbluhm committed Apr 4, 2024
commit e9f6e7b8805f720f9550bec5166069b2cc29f1bb
3 changes: 2 additions & 1 deletion demo/runners/support/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -1481,10 +1481,11 @@ async def get_invite(
payload = {
"handshake_protocols": ["rfc23"],
"use_public_did": public_did_connections,
"use_did_method": use_did_method,
}
if self.mediation:
payload["mediation_id"] = self.mediator_request_id
if use_did_method:
payload["use_did_method"] = use_did_method
print("Calling /out-of-band/create-invitation with:", payload, invi_params)
invi_rec = await self.admin_POST(
"/out-of-band/create-invitation",
Expand Down