ARI: Run 'make ari-stubs'

An earlier contributor apparently forgot to run 'make ari-stubs'
before committing after making ARI model changes.

Change-Id: I7813e5638e2821d11f4b968dc2aeab4f725190a6
This commit is contained in:
George Joseph
2019-04-12 06:33:10 -06:00
parent cb282d5c17
commit 26cdf042f4
2 changed files with 8 additions and 1 deletions

View File

@@ -2455,6 +2455,7 @@ int ast_ari_validate_application_move_failed(struct ast_json *json)
struct ast_json_iter *iter;
int has_type = 0;
int has_application = 0;
int has_timestamp = 0;
int has_args = 0;
int has_channel = 0;
int has_destination = 0;
@@ -2491,6 +2492,7 @@ int ast_ari_validate_application_move_failed(struct ast_json *json)
} else
if (strcmp("timestamp", ast_json_object_iter_key(iter)) == 0) {
int prop_is_valid;
has_timestamp = 1;
prop_is_valid = ast_ari_validate_date(
ast_json_object_iter_value(iter));
if (!prop_is_valid) {
@@ -2547,6 +2549,11 @@ int ast_ari_validate_application_move_failed(struct ast_json *json)
res = 0;
}
if (!has_timestamp) {
ast_log(LOG_ERROR, "ARI ApplicationMoveFailed missing required field timestamp\n");
res = 0;
}
if (!has_args) {
ast_log(LOG_ERROR, "ARI ApplicationMoveFailed missing required field args\n");
res = 0;