summaryrefslogtreecommitdiffstats
path: root/server/lemmy_utils/src/settings.rs
diff options
context:
space:
mode:
authorryexandra <68085235+ryexandra@users.noreply.github.com>2020-07-14 07:17:25 -0600
committerGitHub <noreply@github.com>2020-07-14 09:17:25 -0400
commit29037b49952dd95a08639b27b08c8a8e68a13026 (patch)
treeeed2656e786b389aa599667df496632421ad91bd /server/lemmy_utils/src/settings.rs
parent52983907c4d1b7fda1182316cb631f9b5e913f5b (diff)
Security/fix permission bugs (#966)
* secure the `EditPost` API endpoint * Check user is moderator in BanFromCommunity * secure the `EditComment` API endpoint * pass orig `read` prob when not explicitly updating it. * Block random users from adding mods. * use cleaner logic from `EditPost` * prevent editing a community by a mod from transfering ownership to them * secure `read` action in `EditPrivateMessage` * Add check in UserMention * only let the indended recipient mark as read * simplify booleans to satisfy clippy * requested changes + cargo +nightly fmt * fix to pass federation tests for deleting comments and posts Co-authored-by: chiminh <chiminh.tutanota.com> Co-authored-by: Hex Bear <buildadangtrain@protonmail.com>
Diffstat (limited to 'server/lemmy_utils/src/settings.rs')
-rw-r--r--server/lemmy_utils/src/settings.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/server/lemmy_utils/src/settings.rs b/server/lemmy_utils/src/settings.rs
index 0607974f..097063b6 100644
--- a/server/lemmy_utils/src/settings.rs
+++ b/server/lemmy_utils/src/settings.rs
@@ -1,7 +1,6 @@
use config::{Config, ConfigError, Environment, File};
use serde::Deserialize;
-use std::{fs, io::Error, net::IpAddr, sync::RwLock};
-use std::env;
+use std::{env, fs, io::Error, net::IpAddr, sync::RwLock};
static CONFIG_FILE_DEFAULTS: &str = "config/defaults.hjson";
static CONFIG_FILE: &str = "config/config.hjson";