File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
Unreleased
2
2
==========
3
3
4
+ 0.3.5 (2024-07-18)
5
+ ==================
6
+ - Update create credential request to return new credential info in response
7
+
8
+
4
9
0.3.4 (2021-10-29)
5
10
==================
6
11
- Update turn off verify ssl when bucket name have dot
Original file line number Diff line number Diff line change 1
- __version__ = "0.3.4 "
1
+ __version__ = "0.3.5 "
Original file line number Diff line number Diff line change @@ -235,9 +235,7 @@ def post(self):
235
235
current_app .logger .error (status ["reason" ])
236
236
return response (status ["status_code" ], message = status ["reason" ])
237
237
238
- return response (
239
- 201 , f"User { args ['userId' ]} new credential created successfully."
240
- )
238
+ return response (200 , data = status )
241
239
except Exception as e :
242
240
current_app .logger .error (f"{ e } " , exc_info = args ["debug" ])
243
241
return response (500 , f"{ e } " )
You can’t perform that action at this time.
0 commit comments