mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Add REST return codes CONFIGURATION_FILE_MISMATCH PARTIAL_IMPORT
This commit is contained in:
parent
9eee316238
commit
a375a3b925
1 changed files with 2 additions and 0 deletions
|
|
@ -48,6 +48,8 @@ local rest_utils = {
|
|||
user_does_not_exist = { http_code = 409, rc = -24, str = "USER_DOES_NOT_EXIST"},
|
||||
edit_user_failed = { http_code = 400, rc = -25, str = "EDIT_USER_FAILED"},
|
||||
snmp_device_interface_status_change_failed = { http_code = 400, rc = -26, str = "SNMP_DEVICE_INTERFACE_STATUS_CHANGE_FAILED"},
|
||||
configuration_file_mismatch = { http_code = 400, rc = -27, str = "CONFIGURATION_FILE_MISMATCH" },
|
||||
partial_import = { http_code = 409, rc = -28, str = "PARTIAL_IMPORT" },
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue