feat: rename product to Screened, add PRODUCT_NAME constant to domain

This commit is contained in:
2026-05-12 15:42:24 +02:00
parent 722b09e400
commit f2e3a876dc
9 changed files with 31 additions and 26 deletions

View File

@@ -6,6 +6,8 @@ pub mod review_handler;
pub(crate) mod urls;
pub mod user_adapter;
use domain::PRODUCT_NAME;
// Re-export the generic base types that callers need
pub use activitypub_base::{
ActivityPubService, ApFederationConfig, ApObjectHandler, ApUser, ApUserRepository,
@@ -46,7 +48,7 @@ pub async fn wire(
}),
base_url.clone(),
allow_registration,
"movies-diary".to_string(),
PRODUCT_NAME.to_lowercase(),
cfg!(debug_assertions),
)
.await?,