mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-03 11:11:05 +00:00
rest-api: Swagger scripts were not replacing format variable in file brief
Given resource paths did not have 'json' substituted in for the '{format}'. For some auto generated documentation/comment strings it resulted in something like the following: "... REST handler for /api-docs/sounds.{format}" This patch makes sure the resource api's path is properly substituted. ASTERISK-25472 #close Change-Id: Ie3e950a35db4043e284019d6c9061f3b03922e23
This commit is contained in:
@@ -496,7 +496,7 @@ fin: __attribute__((unused))
|
||||
return;
|
||||
}
|
||||
|
||||
/*! \brief REST handler for /api-docs/applications.{format} */
|
||||
/*! \brief REST handler for /api-docs/applications.json */
|
||||
static struct stasis_rest_handlers applications_applicationName_subscription = {
|
||||
.path_segment = "subscription",
|
||||
.callbacks = {
|
||||
@@ -506,7 +506,7 @@ static struct stasis_rest_handlers applications_applicationName_subscription = {
|
||||
.num_children = 0,
|
||||
.children = { }
|
||||
};
|
||||
/*! \brief REST handler for /api-docs/applications.{format} */
|
||||
/*! \brief REST handler for /api-docs/applications.json */
|
||||
static struct stasis_rest_handlers applications_applicationName = {
|
||||
.path_segment = "applicationName",
|
||||
.is_wildcard = 1,
|
||||
@@ -516,7 +516,7 @@ static struct stasis_rest_handlers applications_applicationName = {
|
||||
.num_children = 1,
|
||||
.children = { &applications_applicationName_subscription, }
|
||||
};
|
||||
/*! \brief REST handler for /api-docs/applications.{format} */
|
||||
/*! \brief REST handler for /api-docs/applications.json */
|
||||
static struct stasis_rest_handlers applications = {
|
||||
.path_segment = "applications",
|
||||
.callbacks = {
|
||||
|
Reference in New Issue
Block a user