File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
aries_cloudcontroller/controllers Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ async def create_invitation(
77
77
auto_accept : bool = None ,
78
78
public : str = None ,
79
79
multi_use : str = None ,
80
+ invite_options : {} = None ,
80
81
):
81
82
params = {}
82
83
if alias :
@@ -87,7 +88,7 @@ async def create_invitation(
87
88
params ["public" ] = public
88
89
if multi_use :
89
90
params ["multi_use" ] = multi_use
90
- if invite_option :
91
+ if invite_options :
91
92
"""A dictionary of the form:
92
93
{
93
94
"mediation_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
@@ -104,7 +105,7 @@ async def create_invitation(
104
105
invite_details = await self .admin_POST (
105
106
"/connections/create-invitation" ,
106
107
params = params ,
107
- json_data = invite_options
108
+ json_data = invite_options ,
108
109
)
109
110
else :
110
111
invite_details = await self .admin_POST (
You can’t perform that action at this time.
0 commit comments