Add $token variable for retrieving authentication token claims data

This commit is contained in:
Tobie Morgan Hitchcock 2022-09-17 02:44:11 +01:00
parent a7444a7c8e
commit 0d4d2359d4

View file

@ -92,14 +92,18 @@ impl Session {
}
/// Convert a session into a runtime
pub(crate) fn context<'a>(&self, mut ctx: Context<'a>) -> Context<'a> {
// Add scope value
let key = String::from("scope");
let val: Value = self.sc.to_owned().into();
ctx.add_value(key, val);
// Add auth data
let key = String::from("auth");
let val: Value = self.sd.to_owned().into();
ctx.add_value(key, val);
// Add scope data
let key = String::from("scope");
let val: Value = self.sc.to_owned().into();
ctx.add_value(key, val);
// Add token data
let key = String::from("token");
let val: Value = self.tk.to_owned().into();
ctx.add_value(key, val);
// Add session value
let key = String::from("session");
let val: Value = Value::from(map! {