We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17ce573 commit a28e523Copy full SHA for a28e523
aries_cloudcontroller/controllers/connections.py
@@ -83,9 +83,11 @@ async def create_invitation(
83
params["alias"] = alias
84
if auto_accept:
85
params["auto_accept"] = auto_accept
86
- if public:
+ if public in [True, False]:
87
+ public = str(public).lower()
88
params["public"] = public
- if multi_use:
89
+ if multi_use in [True, False]:
90
+ multi_use = str(multi_use).lower()
91
params["multi_use"] = multi_use
92
93
invite_details = await self.admin_POST(
0 commit comments