Skip to content

Commit

Permalink
Merge pull request #31 from rpuigm/F021_B021_Depurando
Browse files Browse the repository at this point in the history
F021 b021 depurando
  • Loading branch information
rpuigm authored Dec 10, 2021
2 parents 9935163 + beb2795 commit ec04fae
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.0.1-release.1] (2021-12-09)

### Fixed

- #Se corrige una validación del alta de producto y una ruta de seguridad

## [1.0.0-release.1] (2021-12-06)

### Fixed
Expand Down
9 changes: 3 additions & 6 deletions clientes-app/src/app/altaproducto/altaproducto.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,9 @@ export class AltaproductoComponent implements OnInit {

agregarProducto(): void {
if (
this.producto.nombre.length == 0 ||
this.producto.nombre.length == null ||
this.producto.categoria.length == 0 ||
this.producto.categoria.length == null ||
this.producto.precio == null ||
this.producto.precio == 0
this.producto.nombre == null ||
this.producto.categoria == null ||
this.producto.precio == null
) {
swal.fire(
'Faltan datos',
Expand Down
15 changes: 15 additions & 0 deletions cuentasDePrueba.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Número Marca CVC Fecha
4242424242424242 Visa Cualquier 3 dígitos Cualquier fecha futura
4000056655665556 Tarjeta de débito Visa) Cualquier 3 dígitos Cualquier fecha futura
5555555555554444 Tarjeta MasterCard Cualquier 3 dígitos Cualquier fecha futura
2223003122003222 Mastercard (serie 2) Cualquier 3 dígitos Cualquier fecha futura
5200828282828210 Débito Mastercard) Cualquier 3 dígitos Cualquier fecha futura
5105105105105100 Mastercard (prepago) Cualquier 3 dígitos Cualquier fecha futura
378282246310005 American Express Cualesquiera 4 dígitos Cualquier fecha futura
371449635398431 American Express Cualesquiera 4 dígitos Cualquier fecha futura
6011111111111117 Descubrir Cualquier 3 dígitos Cualquier fecha futura
6011000990139424 Descubrir Cualquier 3 dígitos Cualquier fecha futura
3056930009020004 Diners Club Cualquier 3 dígitos Cualquier fecha futura
36227206271667 Diners Club (tarjeta de 14 dígitos) Cualquier 3 dígitos Cualquier fecha futura
3566002020360505 JCB Cualquier 3 dígitos Cualquier fecha futura
6200000000000005 UnionPay Cualquier 3 dígitos Cualquier fecha futura
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public void configure(HttpSecurity http) throws Exception {
.antMatchers("/api/productos/cesta/**").permitAll()
.antMatchers("/api/productos/producto/nuevo").hasRole("ADMIN")
.antMatchers("/api/productos/producto/imagen").hasRole("ADMIN")
.antMatchers(HttpMethod.POST, "/api/productos/tienda/cambia-tienda").hasRole("ADMIN")
.anyRequest().authenticated()
.and().cors()
.configurationSource(corsConfigurationSource());
Expand Down

0 comments on commit ec04fae

Please sign in to comment.