diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-01-06 02:53:56 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-01-06 02:53:56 +0100 |
| commit | 1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0 (patch) | |
| tree | d17dc16bb14772c184c1b539f51e548bc8e452d0 /logic/src | |
| parent | bb7aa0604d1928ec435e97f6e58521597bc61c3b (diff) | |
| download | jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar.bz2 jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar.zst | |
Update copyright year
Diffstat (limited to 'logic/src')
| -rw-r--r-- | logic/src/account.rs | 2 | ||||
| -rw-r--r-- | logic/src/admin/log.rs | 2 | ||||
| -rw-r--r-- | logic/src/admin/mod.rs | 2 | ||||
| -rw-r--r-- | logic/src/admin/user.rs | 2 | ||||
| -rw-r--r-- | logic/src/assets.rs | 2 | ||||
| -rw-r--r-- | logic/src/filter_sort.rs | 2 | ||||
| -rw-r--r-- | logic/src/home.rs | 2 | ||||
| -rw-r--r-- | logic/src/items.rs | 2 | ||||
| -rw-r--r-- | logic/src/lib.rs | 2 | ||||
| -rw-r--r-- | logic/src/login.rs | 2 | ||||
| -rw-r--r-- | logic/src/node.rs | 2 | ||||
| -rw-r--r-- | logic/src/permission.rs | 2 | ||||
| -rw-r--r-- | logic/src/search.rs | 2 | ||||
| -rw-r--r-- | logic/src/session.rs | 2 | ||||
| -rw-r--r-- | logic/src/stats.rs | 2 |
15 files changed, 15 insertions, 15 deletions
diff --git a/logic/src/account.rs b/logic/src/account.rs index 5f95d15..116e4f6 100644 --- a/logic/src/account.rs +++ b/logic/src/account.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::{DATABASE, login::hash_password, session::Session}; diff --git a/logic/src/admin/log.rs b/logic/src/admin/log.rs index 7130c45..2848aca 100644 --- a/logic/src/admin/log.rs +++ b/logic/src/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 jellycommon::{ diff --git a/logic/src/admin/mod.rs b/logic/src/admin/mod.rs index fb1e59f..76599d5 100644 --- a/logic/src/admin/mod.rs +++ b/logic/src/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 log; diff --git a/logic/src/admin/user.rs b/logic/src/admin/user.rs index 68072de..29a9cfc 100644 --- a/logic/src/admin/user.rs +++ b/logic/src/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::{DATABASE, session::Session}; diff --git a/logic/src/assets.rs b/logic/src/assets.rs index 1862b46..1c4924c 100644 --- a/logic/src/assets.rs +++ b/logic/src/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 crate::{DATABASE, session::Session}; diff --git a/logic/src/filter_sort.rs b/logic/src/filter_sort.rs index af88333..a17e7d2 100644 --- a/logic/src/filter_sort.rs +++ b/logic/src/filter_sort.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 jellycommon::{ Node, NodeKind, RatingType, diff --git a/logic/src/home.rs b/logic/src/home.rs index 7e832fe..e87df74 100644 --- a/logic/src/home.rs +++ b/logic/src/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 crate::{DATABASE, node::DatabaseNodeUserDataExt, session::Session}; diff --git a/logic/src/items.rs b/logic/src/items.rs index eddfb03..a60290e 100644 --- a/logic/src/items.rs +++ b/logic/src/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 crate::{DATABASE, filter_sort::filter_and_sort_nodes, session::Session}; diff --git a/logic/src/lib.rs b/logic/src/lib.rs index 444293a..8ab8fce 100644 --- a/logic/src/lib.rs +++ b/logic/src/lib.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> */ #![feature(duration_constructors)] diff --git a/logic/src/login.rs b/logic/src/login.rs index 5e255a0..8416a5b 100644 --- a/logic/src/login.rs +++ b/logic/src/login.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, DATABASE, session::create}; use anyhow::{Result, anyhow}; diff --git a/logic/src/node.rs b/logic/src/node.rs index 94be1a0..b397f57 100644 --- a/logic/src/node.rs +++ b/logic/src/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 crate::{DATABASE, filter_sort::filter_and_sort_nodes, session::Session}; use anyhow::{Result, anyhow}; diff --git a/logic/src/permission.rs b/logic/src/permission.rs index c23ad41..079d7c5 100644 --- a/logic/src/permission.rs +++ b/logic/src/permission.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::session::Session; diff --git a/logic/src/search.rs b/logic/src/search.rs index e2fdcce..de1a53c 100644 --- a/logic/src/search.rs +++ b/logic/src/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 crate::{DATABASE, node::DatabaseNodeUserDataExt, session::Session}; use anyhow::Result; diff --git a/logic/src/session.rs b/logic/src/session.rs index 52573cc..e21e9f8 100644 --- a/logic/src/session.rs +++ b/logic/src/session.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, DATABASE}; use aes_gcm_siv::{ diff --git a/logic/src/stats.rs b/logic/src/stats.rs index c7464f9..83ee8c8 100644 --- a/logic/src/stats.rs +++ b/logic/src/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 crate::{DATABASE, session::Session}; |