Remove federation option from master. (#745)

This commit is contained in:
Dessalines 2020-05-25 18:48:24 -04:00 committed by GitHub
parent e54eac6227
commit 80653a5317
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 15 deletions

3
docker/lemmy.hjson vendored
View file

@ -23,9 +23,6 @@
jwt_secret: "changeme"
# The dir for the front end
front_end_dir: "/app/dist"
# whether to enable activitypub federation. this feature is in alpha, do not enable in production, as might
# cause problems like remote instances fetching and permanently storing bad data.
federation_enabled: false
# rate limits for various user actions, by user ip
rate_limit: {
# maximum number of messages created in interval

View file

@ -25,11 +25,7 @@ async fn node_info(
Ok(site_view) => site_view,
Err(_) => return Err(format_err!("not_found")),
};
let protocols = if Settings::get().federation_enabled {
vec!["activitypub".to_string()]
} else {
vec![]
};
let protocols = vec![];
Ok(NodeInfo {
version: "2.0".to_string(),
software: NodeInfoSoftware {

View file

@ -7,12 +7,10 @@ pub struct Params {
}
pub fn config(cfg: &mut web::ServiceConfig) {
if Settings::get().federation_enabled {
cfg.route(
".well-known/webfinger",
web::get().to(get_webfinger_response),
);
}
cfg.route(
".well-known/webfinger",
web::get().to(get_webfinger_response),
);
}
lazy_static! {

View file

@ -20,7 +20,6 @@ pub struct Settings {
pub front_end_dir: String,
pub rate_limit: RateLimitConfig,
pub email: Option<EmailConfig>,
pub federation_enabled: bool,
}
#[derive(Debug, Deserialize, Clone)]