File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 12
12
- Fix request access control attributes and methods (#197 , PLUM Sprint 230421)
13
13
- Reintroduce metrics (#198 , PLUM Sprint 230421)
14
14
- Allow batman to be configured without basic auth (#199 , PLUM Sprint 230421)
15
+ - Include client cookie name in client detail (#200 , PLUM Sprint 230421)
15
16
16
17
### Features
17
18
- Filter resource list by resource type using the ` exclude ` query parameter (#196 , PLUM Sprint 230421)
Original file line number Diff line number Diff line change @@ -273,9 +273,11 @@ async def count(self, query_filter: dict = None):
273
273
274
274
275
275
async def get (self , client_id : str ):
276
+ cookie_svc = self .App .get_service ("seacatauth.CookieService" )
276
277
client = await self .StorageService .get (self .ClientCollection , client_id , decrypt = ["__client_secret" ])
277
278
if "__client_secret" in client :
278
279
client ["__client_secret" ] = client ["__client_secret" ].decode ("ascii" )
280
+ client ["cookie_name" ] = cookie_svc .get_cookie_name (client_id )
279
281
return client
280
282
281
283
You can’t perform that action at this time.
0 commit comments