From b313f40ef0c51111db73ece0f051cd72f1231742 Mon Sep 17 00:00:00 2001 From: Michael Tidwell Date: Wed, 14 Dec 2022 00:16:58 -0500 Subject: [PATCH] todo --- actix-session/src/session.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actix-session/src/session.rs b/actix-session/src/session.rs index 7b6684573..bb7c395cf 100644 --- a/actix-session/src/session.rs +++ b/actix-session/src/session.rs @@ -106,9 +106,9 @@ impl Session { } /// Get a the session key itself from the overall session. /// - /// Needs to be implemented + /// Retrieve the overall session key pub fn get_session_key(&self) -> secrecy::Secret { - let key = self.0.borrow().session_key.clone(); + let key = todo!("populate key somehow"); secrecy::Secret::new(key) } /// Get all raw key-value data from the session.