]> Untitled Git - lemmy.git/commitdiff
Adding min setup password length to the docs. Fixes #1989 (#1990)
authorDessalines <dessalines@users.noreply.github.com>
Sun, 12 Dec 2021 16:42:24 +0000 (11:42 -0500)
committerGitHub <noreply@github.com>
Sun, 12 Dec 2021 16:42:24 +0000 (16:42 +0000)
config/defaults.hjson
crates/utils/src/settings/structs.rs

index 14c1dce0bd33847c3dd7e3ad67b12afc3ceac351..1126fef3fe8975e5dd5f09d36d6d61addd70b04e 100644 (file)
@@ -83,8 +83,8 @@
   setup: {
     # Username for the admin user
     admin_username: "admin"
-    # Password for the admin user
-    admin_password: "my_passwd"
+    # Password for the admin user. It must be at least 10 characters.
+    admin_password: "my_passwd_longer_than_ten_characters"
     # Name of the site (can be changed later)
     site_name: "My Lemmy Instance"
     # Email for the admin user (optional, can be omitted and set later through the website)
index 6a20386e7b3b590cb88ab493b86918f5981328c0..ae7bd544ae2c2c57348d25620ffc45fbe893bf81 100644 (file)
@@ -165,8 +165,8 @@ pub struct SetupConfig {
   /// Username for the admin user
   #[doku(example = "admin")]
   pub admin_username: String,
-  /// Password for the admin user
-  #[doku(example = "my_passwd")]
+  /// Password for the admin user. It must be at least 10 characters.
+  #[doku(example = "my_passwd_longer_than_ten_characters")]
   pub admin_password: String,
   /// Name of the site (can be changed later)
   #[doku(example = "My Lemmy Instance")]