aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-10-25 12:21:27 +0200
committermetamuffin <metamuffin@disroot.org>2023-10-25 12:21:27 +0200
commita491792196c034efbd2f8998944af3f7958c0e52 (patch)
treea295342aef8cd38e32b05af273ff305b7f2a5cc5 /common
parent5aa2a6fa5a6f8daf3ed4d86082658027a44f83c8 (diff)
parent8fc2d47f1f6cde93554ba096b959b3bef3652ac1 (diff)
downloadjellything-a491792196c034efbd2f8998944af3f7958c0e52.tar
jellything-a491792196c034efbd2f8998944af3f7958c0e52.tar.bz2
jellything-a491792196c034efbd2f8998944af3f7958c0e52.tar.zst
Merge branch 'master' of codeberg.org:metamuffin/jellything
Diffstat (limited to 'common')
-rw-r--r--common/src/user.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/src/user.rs b/common/src/user.rs
index 0d4806e..17700a0 100644
--- a/common/src/user.rs
+++ b/common/src/user.rs
@@ -47,7 +47,9 @@ impl UserPermission {
use UserPermission::*;
matches!(
self,
- Transcode | StreamFormat(Jhls | HlsMaster | HlsVariant | Matroska | Segment)
+ Transcode
+ | FederatedContent
+ | StreamFormat(Jhls | HlsMaster | HlsVariant | Matroska | Segment)
)
}
}