]> Untitled Git - lemmy.git/commitdiff
Changing docs formattin, running format.
authorDessalines <tyhou13@gmx.com>
Mon, 2 Nov 2020 03:26:00 +0000 (21:26 -0600)
committerDessalines <tyhou13@gmx.com>
Mon, 2 Nov 2020 03:26:00 +0000 (21:26 -0600)
docs/src/administration_configuration.md
lemmy_api/src/user.rs

index cfda34f75d8f26a3a70b6dcacef13c6719763ee4..48e32fddf015297a776e565c372709d0ccb6691f 100644 (file)
@@ -4,8 +4,8 @@ The configuration is based on the file [defaults.hjson](https://yerbamate.dev/Le
 
 The `defaults.hjson` and `config.hjson` files are located at `config/defaults.hjson` and`config/config.hjson`, respectively. To change these default locations, you can set these two environment variables:
 
-    LEMMY_CONFIG_LOCATION           # config.hjson
-    LEMMY_CONFIG_DEFAULTS_LOCATION  # defaults.hjson
+- LEMMY_CONFIG_LOCATION # config.hjson
+- LEMMY_CONFIG_DEFAULTS_LOCATION # defaults.hjson
 
 Additionally, you can override any config files with environment variables. These have the same name as the config options, and are prefixed with `LEMMY_`. For example, you can override the `database.password` with `LEMMY_DATABASE__POOL_SIZE=10`.
 
index 1d5aa19a260ddada725fc3cd4bb49f1b93f1f278..ad3d9808783e02c0fbe97573ac0c318133a70c00 100644 (file)
@@ -493,12 +493,14 @@ impl Perform for GetUserDetails {
         // if there's a logged in user and it's the same id as the user whose details are being
         // requested we need to use get_user_dangerous so it returns their email or other sensitive
         // data hidden when viewing users other than yourself
-        Some(auth_user_id) => if user_details_id == auth_user_id {
-          UserView::get_user_dangerous(conn, auth_user_id)
-        } else {
-          UserView::get_user_secure(conn, user_details_id)
+        Some(auth_user_id) => {
+          if user_details_id == auth_user_id {
+            UserView::get_user_dangerous(conn, auth_user_id)
+          } else {
+            UserView::get_user_secure(conn, user_details_id)
+          }
         }
-        None => UserView::get_user_secure(conn, user_details_id)
+        None => UserView::get_user_secure(conn, user_details_id),
       }
     };