Fix error in postgres store

This commit is contained in:
Torjus Håkestad 2021-04-10 09:33:11 +02:00
parent 2f86169572
commit 1d0d1aa20f

View File

@ -57,18 +57,13 @@ RETURNING id;`
return err
}
l.ID = id
return nil
return tx.Commit()
}
func (s *PostgresStore) All() ([]models.LoginAttempt, error) {
stmt := `SELECT date, remote_ip, username, password, client_version, connection_uuid, country FROM login_attempts`
tx, err := s.db.Begin()
if err != nil {
return nil, err
}
rows, err := tx.Query(stmt)
rows, err := s.db.Query(stmt)
if err != nil {
return nil, err
}