refs #3867 Fix: display message of forbidden errors
gitea/hedera-web/pipeline/head This commit looks good
Details
gitea/hedera-web/pipeline/head This commit looks good
Details
This commit is contained in:
parent
cdafea824e
commit
42f682739e
|
@ -1,4 +1,4 @@
|
||||||
hedera-web (23.6.8) stable; urgency=low
|
hedera-web (23.6.9) stable; urgency=low
|
||||||
|
|
||||||
* Initial Release.
|
* Initial Release.
|
||||||
|
|
||||||
|
|
|
@ -238,9 +238,10 @@ module.exports = new Class({
|
||||||
if (err instanceof Vn.JsonException) {
|
if (err instanceof Vn.JsonException) {
|
||||||
const statusCode = err.statusCode;
|
const statusCode = err.statusCode;
|
||||||
if (statusCode >= 400 && statusCode < 500) {
|
if (statusCode >= 400 && statusCode < 500) {
|
||||||
if (err.statusCode == 403)
|
if (err.statusCode == 403) {
|
||||||
Htk.Toast.showError(_('You don\'t have enough privileges'));
|
Htk.Toast.showError(err.message ||
|
||||||
else {
|
_('You don\'t have enough privileges'));
|
||||||
|
} else {
|
||||||
switch (err.exception) {
|
switch (err.exception) {
|
||||||
case 'UserDisabledError':
|
case 'UserDisabledError':
|
||||||
case 'OutdatedVersionError':
|
case 'OutdatedVersionError':
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hedera-web",
|
"name": "hedera-web",
|
||||||
"version": "23.6.8",
|
"version": "23.6.9",
|
||||||
"description": "Verdnatura web page",
|
"description": "Verdnatura web page",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
Loading…
Reference in New Issue