Quick fix for adding new randoms

This commit is contained in:
Joey Hines 2023-04-20 16:37:42 -06:00
parent 883a235ab6
commit fa9935fa54
Signed by: joeyahines
GPG Key ID: 995E531F7A569DDB

View File

@ -25,8 +25,8 @@ impl JdbModel for RandomConfig {
"randoms".to_string()
}
fn check_unique(&self, other: &Self) -> bool {
!self.name.eq_ignore_ascii_case(&other.name)
fn check_unique(&self, _other: &Self) -> bool {
true
}
}