noodlemagazine

This commit is contained in:
Simon
2025-08-31 17:16:37 +00:00
parent 23a643b9dc
commit 437deb388b
4 changed files with 217 additions and 1 deletions

View File

@@ -757,6 +757,19 @@ async fn status(req: HttpRequest) -> Result<impl web::Responder, web::Error> {
nsfw: true,
});
// porn00
status.add_channel(Channel {
id: "noodlemagazine".to_string(),
name: "Noodlemagazine".to_string(),
description: "Discover the Best Adult Videos".to_string(),
premium: false,
favicon: "https://www.google.com/s2/favicons?sz=64&domain=noodlemagazine.com".to_string(),
status: "active".to_string(),
categories: vec![],
options: vec![],
nsfw: true,
});
//missav
status.add_channel(Channel {
id: "missav".to_string(),
@@ -1033,6 +1046,7 @@ pub fn get_provider(channel: &str) -> Option<AnyProvider> {
"xxthots" => Some(AnyProvider::Xxthots(crate::providers::xxthots::XxthotsProvider::new())),
"sxyprn" => Some(AnyProvider::Sxyprn(crate::providers::sxyprn::SxyprnProvider::new())),
"porn00" => Some(AnyProvider::Porn00(crate::providers::porn00::Porn00Provider::new())),
"noodlemagazine" => Some(AnyProvider::Noodlemagazine(crate::providers::noodlemagazine::NoodlemagazineProvider::new())),
_ => Some(AnyProvider::Perverzija(PerverzijaProvider::new())),
}
}