aboutsummaryrefslogtreecommitdiff
path: root/server/src/request_info/session.rs
blob: d032659d03aae5b8e7dcb75a18cb15c45625ac6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
    This file is part of jellything (https://codeberg.org/metamuffin/jellything)
    which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
    Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use super::A;
use crate::ui::error::MyError;
use anyhow::anyhow;
use log::warn;
use rocket::{
    Request, async_trait,
    http::Status,
    outcome::Outcome,
    request::{self, FromRequest},
};