mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 07:53:00 +01:00
update guide example
This commit is contained in:
parent
50b2f62c80
commit
d0c01c2cdd
@ -115,7 +115,7 @@ session data.
|
||||
# extern crate actix;
|
||||
# extern crate actix_web;
|
||||
use actix_web::*;
|
||||
use actix_web::middlewares::RequestSession;
|
||||
use actix_web::middlewares::{RequestSession, SessionStorage, CookieSessionBackend};
|
||||
|
||||
fn index(mut req: HttpRequest) -> Result<&'static str> {
|
||||
// access session data
|
||||
@ -133,8 +133,8 @@ fn main() {
|
||||
# let sys = actix::System::new("basic-example");
|
||||
HttpServer::new(
|
||||
|| Application::new()
|
||||
.middleware(middlewares::SessionStorage::new( // <- create session middlewares
|
||||
middlewares::CookieSessionBackend::build(&[0; 32]) // <- create cookie session backend
|
||||
.middleware(SessionStorage::new( // <- create session middlewares
|
||||
CookieSessionBackend::build(&[0; 32]) // <- create cookie session backend
|
||||
.secure(false)
|
||||
.finish()
|
||||
)))
|
||||
|
Loading…
Reference in New Issue
Block a user