diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-29 16:15:23 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-29 16:15:23 +0100 |
commit | 82e8a55a1496ae9132e13e7286fe1c0d57d586d3 (patch) | |
tree | 78b8186f0d83ef0c7c876a6ce161cfb9b04b7701 /server/src/routes | |
parent | e7ba3274e27fad755f15465581f5b403c82ab4d2 (diff) | |
download | jellything-82e8a55a1496ae9132e13e7286fe1c0d57d586d3.tar jellything-82e8a55a1496ae9132e13e7286fe1c0d57d586d3.tar.bz2 jellything-82e8a55a1496ae9132e13e7286fe1c0d57d586d3.tar.zst |
copyright year
Diffstat (limited to 'server/src/routes')
-rw-r--r-- | server/src/routes/api/mod.rs | 2 | ||||
-rw-r--r-- | server/src/routes/mod.rs | 2 | ||||
-rw-r--r-- | server/src/routes/stream.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/account/mod.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/account/session/guard.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/account/session/mod.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/account/session/token.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/account/settings.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/admin/log.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/admin/mod.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/admin/user.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/assets.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/browser.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/error.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/home.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/layout.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/mod.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/node.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/player.rs | 2 | ||||
-rw-r--r-- | server/src/routes/ui/style.rs | 2 | ||||
-rw-r--r-- | server/src/routes/userdata.rs | 2 |
21 files changed, 21 insertions, 21 deletions
diff --git a/server/src/routes/api/mod.rs b/server/src/routes/api/mod.rs index f7d1846..4bd5fa9 100644 --- a/server/src/routes/api/mod.rs +++ b/server/src/routes/api/mod.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::ui::{ account::{login_logic, session::AdminSession}, diff --git a/server/src/routes/mod.rs b/server/src/routes/mod.rs index 45dd89a..0853ef9 100644 --- a/server/src/routes/mod.rs +++ b/server/src/routes/mod.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use self::playersync::{r_streamsync, PlayersyncChannels}; use crate::{database::DataAcid, routes::ui::error::MyResult}; diff --git a/server/src/routes/stream.rs b/server/src/routes/stream.rs index 3500ee4..d057aa7 100644 --- a/server/src/routes/stream.rs +++ b/server/src/routes/stream.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::ui::{account::session::Session, error::MyError}; use crate::database::DataAcid; diff --git a/server/src/routes/ui/account/mod.rs b/server/src/routes/ui/account/mod.rs index 144b1e0..d73cf4c 100644 --- a/server/src/routes/ui/account/mod.rs +++ b/server/src/routes/ui/account/mod.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ pub mod session; pub mod settings; diff --git a/server/src/routes/ui/account/session/guard.rs b/server/src/routes/ui/account/session/guard.rs index 9e0bbfe..6a9bdaf 100644 --- a/server/src/routes/ui/account/session/guard.rs +++ b/server/src/routes/ui/account/session/guard.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::{AdminSession, Session}; use crate::{database::DataAcid, routes::ui::error::MyError}; diff --git a/server/src/routes/ui/account/session/mod.rs b/server/src/routes/ui/account/session/mod.rs index 7236c63..cb06255 100644 --- a/server/src/routes/ui/account/session/mod.rs +++ b/server/src/routes/ui/account/session/mod.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use chrono::{DateTime, Utc}; use jellycommon::user::{PermissionSet, User}; diff --git a/server/src/routes/ui/account/session/token.rs b/server/src/routes/ui/account/session/token.rs index 1d191ec..3ada0ec 100644 --- a/server/src/routes/ui/account/session/token.rs +++ b/server/src/routes/ui/account/session/token.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::SessionData; use aes_gcm_siv::{ diff --git a/server/src/routes/ui/account/settings.rs b/server/src/routes/ui/account/settings.rs index 7d54d75..24e90de 100644 --- a/server/src/routes/ui/account/settings.rs +++ b/server/src/routes/ui/account/settings.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::{format_form_error, hash_password}; use crate::{ diff --git a/server/src/routes/ui/admin/log.rs b/server/src/routes/ui/admin/log.rs index b123ada..cc34dbc 100644 --- a/server/src/routes/ui/admin/log.rs +++ b/server/src/routes/ui/admin/log.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{ routes::ui::{ diff --git a/server/src/routes/ui/admin/mod.rs b/server/src/routes/ui/admin/mod.rs index 6e19373..1fba6c0 100644 --- a/server/src/routes/ui/admin/mod.rs +++ b/server/src/routes/ui/admin/mod.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ pub mod log; pub mod user; diff --git a/server/src/routes/ui/admin/user.rs b/server/src/routes/ui/admin/user.rs index 26c1837..524f849 100644 --- a/server/src/routes/ui/admin/user.rs +++ b/server/src/routes/ui/admin/user.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{ database::DataAcid, diff --git a/server/src/routes/ui/assets.rs b/server/src/routes/ui/assets.rs index aeb4eff..7eb8e98 100644 --- a/server/src/routes/ui/assets.rs +++ b/server/src/routes/ui/assets.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::routes::ui::{account::session::Session, error::MyResult, CacheControlFile}; use anyhow::{anyhow, Context}; diff --git a/server/src/routes/ui/browser.rs b/server/src/routes/ui/browser.rs index 4faf40b..9a5fb6c 100644 --- a/server/src/routes/ui/browser.rs +++ b/server/src/routes/ui/browser.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::{ account::session::Session, diff --git a/server/src/routes/ui/error.rs b/server/src/routes/ui/error.rs index ba1dc88..67924e2 100644 --- a/server/src/routes/ui/error.rs +++ b/server/src/routes/ui/error.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::layout::{DynLayoutPage, LayoutPage}; use crate::{routes::ui::account::rocket_uri_macro_r_account_login, uri}; diff --git a/server/src/routes/ui/home.rs b/server/src/routes/ui/home.rs index 6f70644..8eacfde 100644 --- a/server/src/routes/ui/home.rs +++ b/server/src/routes/ui/home.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::{account::session::Session, layout::LayoutPage, node::NodeCard}; use crate::{ diff --git a/server/src/routes/ui/layout.rs b/server/src/routes/ui/layout.rs index 9f9038c..a1931dd 100644 --- a/server/src/routes/ui/layout.rs +++ b/server/src/routes/ui/layout.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use crate::{ routes::ui::{ diff --git a/server/src/routes/ui/mod.rs b/server/src/routes/ui/mod.rs index c5062a3..812e2d1 100644 --- a/server/src/routes/ui/mod.rs +++ b/server/src/routes/ui/mod.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use log::debug; use markup::Render; diff --git a/server/src/routes/ui/node.rs b/server/src/routes/ui/node.rs index 88f71b7..3307d50 100644 --- a/server/src/routes/ui/node.rs +++ b/server/src/routes/ui/node.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::{ assets::{ diff --git a/server/src/routes/ui/player.rs b/server/src/routes/ui/player.rs index c5232e1..178cbba 100644 --- a/server/src/routes/ui/player.rs +++ b/server/src/routes/ui/player.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::{ account::session::{token, Session}, diff --git a/server/src/routes/ui/style.rs b/server/src/routes/ui/style.rs index a185704..a719b67 100644 --- a/server/src/routes/ui/style.rs +++ b/server/src/routes/ui/style.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> Copyright (C) 2023 tpart */ use rocket::{ diff --git a/server/src/routes/userdata.rs b/server/src/routes/userdata.rs index 22e20b7..cf6b0af 100644 --- a/server/src/routes/userdata.rs +++ b/server/src/routes/userdata.rs @@ -1,7 +1,7 @@ /* 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) 2024 metamuffin <metamuffin.org> + Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::ui::{account::session::Session, error::MyResult, node::DatabaseNodeUserDataExt}; use crate::routes::ui::node::rocket_uri_macro_r_library_node; |