1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-12-25 23:28:37 -06:00

fix: slug_style options are consistent now

This commit is contained in:
Sayantan Santra 2024-03-31 00:59:05 -05:00
parent 599b013fc9
commit 6c7ca8d0ac
Signed by: SinTan1729
GPG key ID: EB3E68BFBA25C85F
2 changed files with 3 additions and 3 deletions

View file

@ -28,7 +28,7 @@ pub fn add_link(req: String, db: &Connection) -> (bool, String) {
let chunks: Vec<&str> = req.split(';').collect();
let longlink = String::from(chunks[0]);
let style = env::var("slug_style").unwrap_or(String::from("pair"));
let style = env::var("slug_style").unwrap_or(String::from("Pair"));
let len_str = env::var("slug_length").unwrap_or(String::from("8"));
let mut len: usize = len_str.parse().unwrap_or(8);
if len < 4 {

View file

@ -24,9 +24,9 @@ services:
# By default, the auto-generated pairs are adjective-name pairs
# If you want UIDs, please change slug_style to UID
# Supported values for slug_style are "pair" and "UID"
# Supported values for slug_style are "Pair" and "UID"
# The length is 8 by default, and a minimum of 4 is allowed
# - slug_style=pair
# - slug_style=Pair
# - slug_length=8
volumes:
- db:/urls.sqlite