@dile/crud
Advanced tools
Comparing version 0.6.4 to 0.6.5
@@ -99,5 +99,8 @@ import { LitElement, html } from 'lit'; | ||
break; | ||
case 403: | ||
this.dispatchError(this.translations.http_403, res.data); | ||
break; | ||
case 405: | ||
this.dispatchError(this.translations.http_405, res.data); | ||
break; | ||
this.dispatchError(this.translations.http_405, res.data); | ||
break; | ||
case 413: | ||
@@ -104,0 +107,0 @@ this.dispatchError(this.translations.http_413, res.data); |
@@ -7,2 +7,3 @@ export const translations = { | ||
http_401: "Unauthorized", | ||
http_403: "You do not have permission to access this resource", | ||
http_405: "Method Not Allowed", | ||
@@ -9,0 +10,0 @@ http_413: "Content Too Large", |
@@ -7,2 +7,3 @@ export const translations = { | ||
http_401: "No autorizado", | ||
http_403: "Acceso prohibido para el usuario autenticado", | ||
http_405: "Método HTTP no permitido", | ||
@@ -9,0 +10,0 @@ http_413: "Contenido enviado al servidor demasiado largo", |
{ | ||
"name": "@dile/crud", | ||
"version": "0.6.4", | ||
"version": "0.6.5", | ||
"description": "Components to create a generic crud system based on Web Components and Lit", | ||
@@ -34,3 +34,3 @@ "main": "index.js", | ||
}, | ||
"gitHead": "7678b4a06e0e73fda2c43ca034f4c7f223e5f1cf" | ||
"gitHead": "0109255225e86bad9a23fc314f929e3c7e199ef5" | ||
} |
131661
3999