mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 20:56:39 +00:00
Fixed templates so that the changes from r392777 won't be overwritten the next
time we run the generators. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@392778 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -41,10 +41,12 @@
|
|||||||
* JSON models
|
* JSON models
|
||||||
*
|
*
|
||||||
* Sound
|
* Sound
|
||||||
* - lang: string (required)
|
|
||||||
* - text: string
|
* - text: string
|
||||||
* - id: string (required)
|
* - id: string (required)
|
||||||
* - formats: List[string] (required)
|
* - formats: List[FormatLangPair] (required)
|
||||||
|
* FormatLangPair
|
||||||
|
* - language: string (required)
|
||||||
|
* - format: string (required)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#endif /* _ASTERISK_RESOURCE_SOUNDS_H */
|
#endif /* _ASTERISK_RESOURCE_SOUNDS_H */
|
||||||
|
@@ -111,8 +111,7 @@ static int unload_module(void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT,
|
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "RESTful API module - {{{description}}}",
|
||||||
"RESTful API module - {{{description}}}",
|
|
||||||
.load = load_module,
|
.load = load_module,
|
||||||
.unload = unload_module,
|
.unload = unload_module,
|
||||||
.nonoptreq = "res_stasis_http,res_stasis",
|
.nonoptreq = "res_stasis_http,res_stasis",
|
||||||
|
@@ -143,8 +143,7 @@ static int unload_module(void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER,
|
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER, "Stasis JSON Generators and Validators - {{{description}}}",
|
||||||
"Stasis JSON Generators and Validators - {{{description}}}",
|
|
||||||
.load = load_module,
|
.load = load_module,
|
||||||
.unload = unload_module,
|
.unload = unload_module,
|
||||||
.load_pri = AST_MODPRI_DEFAULT,
|
.load_pri = AST_MODPRI_DEFAULT,
|
||||||
|
Reference in New Issue
Block a user