From 581aae081dcc75c0fd0520c0b9ae096e4b138681 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 13 Jun 2021 06:20:21 +0200 Subject: Model/Users: Remove superfluous "check_if_" prefix from check functions --- lib/Travelynx/Model/Users.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Travelynx/Model/Users.pm') diff --git a/lib/Travelynx/Model/Users.pm b/lib/Travelynx/Model/Users.pm index 3c64e9d..8bd60f0 100644 --- a/lib/Travelynx/Model/Users.pm +++ b/lib/Travelynx/Model/Users.pm @@ -366,7 +366,7 @@ sub set_password_hash { $db->update( 'users', { password => $password }, { id => $uid } ); } -sub check_if_user_name_exists { +sub user_name_exists { my ( $self, %opt ) = @_; my $db = $opt{db} // $self->{pg}->db; my $user_name = $opt{name}; @@ -381,7 +381,7 @@ sub check_if_user_name_exists { return 0; } -sub check_if_mail_is_blacklisted { +sub mail_is_blacklisted { my ( $self, %opt ) = @_; my $db = $opt{db} // $self->{pg}->db; my $mail = $opt{email}; -- cgit v1.2.3