util.sasl.oauthbearer: Attach token_info to sasl handler

This allows token-aware things to access extra information about the
authentication, such as when the token is due to expire and the attached
custom 'data'.
This commit is contained in:
Matthew Wild 2023-03-15 09:41:38 +00:00
parent adb37b8272
commit 9dedc78f3c

View file

@ -75,6 +75,8 @@ local function oauthbearer(self, message)
self.resource = token_info.resource;
self.role = token_info.role;
self.token_info token_info;
return "success";
end