aboutsummaryrefslogtreecommitdiff
path: root/server/src/ui
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2026-01-06 02:53:56 +0100
committermetamuffin <metamuffin@disroot.org>2026-01-06 02:53:56 +0100
commit1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0 (patch)
treed17dc16bb14772c184c1b539f51e548bc8e452d0 /server/src/ui
parentbb7aa0604d1928ec435e97f6e58521597bc61c3b (diff)
downloadjellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar
jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar.bz2
jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar.zst
Update copyright year
Diffstat (limited to 'server/src/ui')
-rw-r--r--server/src/ui/account/mod.rs2
-rw-r--r--server/src/ui/account/settings.rs2
-rw-r--r--server/src/ui/admin/import.rs2
-rw-r--r--server/src/ui/admin/log.rs2
-rw-r--r--server/src/ui/admin/mod.rs2
-rw-r--r--server/src/ui/admin/user.rs2
-rw-r--r--server/src/ui/assets.rs2
-rw-r--r--server/src/ui/error.rs2
-rw-r--r--server/src/ui/home.rs2
-rw-r--r--server/src/ui/items.rs2
-rw-r--r--server/src/ui/mod.rs2
-rw-r--r--server/src/ui/node.rs2
-rw-r--r--server/src/ui/player.rs2
-rw-r--r--server/src/ui/search.rs2
-rw-r--r--server/src/ui/stats.rs2
-rw-r--r--server/src/ui/style.rs2
16 files changed, 16 insertions, 16 deletions
diff --git a/server/src/ui/account/mod.rs b/server/src/ui/account/mod.rs
index 8296e95..d731f0f 100644
--- a/server/src/ui/account/mod.rs
+++ b/server/src/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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
pub mod settings;
diff --git a/server/src/ui/account/settings.rs b/server/src/ui/account/settings.rs
index d31c4ba..491e82e 100644
--- a/server/src/ui/account/settings.rs
+++ b/server/src/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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use super::format_form_error;
use crate::{
diff --git a/server/src/ui/admin/import.rs b/server/src/ui/admin/import.rs
index b6bb858..52add7f 100644
--- a/server/src/ui/admin/import.rs
+++ b/server/src/ui/admin/import.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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use std::time::Duration;
diff --git a/server/src/ui/admin/log.rs b/server/src/ui/admin/log.rs
index 0a0e5ca..ef84704 100644
--- a/server/src/ui/admin/log.rs
+++ b/server/src/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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use crate::{
helper::{A, RequestInfo},
diff --git a/server/src/ui/admin/mod.rs b/server/src/ui/admin/mod.rs
index 03f01c1..0cc226b 100644
--- a/server/src/ui/admin/mod.rs
+++ b/server/src/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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
pub mod import;
pub mod log;
diff --git a/server/src/ui/admin/user.rs b/server/src/ui/admin/user.rs
index 4df5e80..3d56f46 100644
--- a/server/src/ui/admin/user.rs
+++ b/server/src/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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use crate::{helper::RequestInfo, ui::error::MyResult};
use anyhow::Context;
diff --git a/server/src/ui/assets.rs b/server/src/ui/assets.rs
index 494638c..738d1de 100644
--- a/server/src/ui/assets.rs
+++ b/server/src/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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use super::error::MyResult;
use crate::helper::{A, cache::CacheControlImage};
diff --git a/server/src/ui/error.rs b/server/src/ui/error.rs
index 9e9f7e5..d94639a 100644
--- a/server/src/ui/error.rs
+++ b/server/src/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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use crate::CONF;
use jellyui::{error::ErrorPage, locale::Language, render_page, scaffold::RenderInfo};
diff --git a/server/src/ui/home.rs b/server/src/ui/home.rs
index 9e11900..db57880 100644
--- a/server/src/ui/home.rs
+++ b/server/src/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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use super::error::MyResult;
diff --git a/server/src/ui/items.rs b/server/src/ui/items.rs
index ace948f..bf99ef2 100644
--- a/server/src/ui/items.rs
+++ b/server/src/ui/items.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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use super::error::MyError;
use crate::helper::{accept::Accept, filter_sort::ANodeFilterSort, RequestInfo};
diff --git a/server/src/ui/mod.rs b/server/src/ui/mod.rs
index e6da485..aca6c33 100644
--- a/server/src/ui/mod.rs
+++ b/server/src/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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use crate::{
helper::{language::AcceptLanguage, A},
diff --git a/server/src/ui/node.rs b/server/src/ui/node.rs
index a6c0cc2..4b452f3 100644
--- a/server/src/ui/node.rs
+++ b/server/src/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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use super::error::MyResult;
use crate::helper::{filter_sort::ANodeFilterSort, RequestInfo, A};
diff --git a/server/src/ui/player.rs b/server/src/ui/player.rs
index 091169b..7b69aab 100644
--- a/server/src/ui/player.rs
+++ b/server/src/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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use super::error::MyResult;
use crate::{
diff --git a/server/src/ui/search.rs b/server/src/ui/search.rs
index 567f000..47c39c8 100644
--- a/server/src/ui/search.rs
+++ b/server/src/ui/search.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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use super::error::MyResult;
use crate::helper::RequestInfo;
diff --git a/server/src/ui/stats.rs b/server/src/ui/stats.rs
index ff02e33..0c5d2cd 100644
--- a/server/src/ui/stats.rs
+++ b/server/src/ui/stats.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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use super::error::MyError;
use crate::helper::RequestInfo;
diff --git a/server/src/ui/style.rs b/server/src/ui/style.rs
index 77f0fe1..4d458c9 100644
--- a/server/src/ui/style.rs
+++ b/server/src/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) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
Copyright (C) 2023 tpart
*/
use rocket::{