Skip to content

Commit a912a80

Browse files
committed
remove email verification check
1 parent 93c0078 commit a912a80

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/hospitals/service.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ pub fn get_hospital_by_id(
220220
let result = hospitals
221221
.filter(id.eq(hospital_id))
222222
.filter(deleted_at.is_null())
223-
.filter(email_verified.eq(true))
223+
// .filter(email_verified.eq(true))
224224
.select(Hospital::as_select())
225225
.first(conn)
226226
.optional()?;

0 commit comments

Comments
 (0)