mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 12:52:33 +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
|
||||
*
|
||||
* Sound
|
||||
* - lang: string (required)
|
||||
* - text: string
|
||||
* - id: string (required)
|
||||
* - formats: List[string] (required)
|
||||
* - formats: List[FormatLangPair] (required)
|
||||
* FormatLangPair
|
||||
* - language: string (required)
|
||||
* - format: string (required)
|
||||
*/
|
||||
|
||||
#endif /* _ASTERISK_RESOURCE_SOUNDS_H */
|
||||
|
@@ -111,8 +111,7 @@ static int unload_module(void)
|
||||
return 0;
|
||||
}
|
||||
|
||||
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT,
|
||||
"RESTful API module - {{{description}}}",
|
||||
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "RESTful API module - {{{description}}}",
|
||||
.load = load_module,
|
||||
.unload = unload_module,
|
||||
.nonoptreq = "res_stasis_http,res_stasis",
|
||||
|
@@ -143,8 +143,7 @@ static int unload_module(void)
|
||||
return 0;
|
||||
}
|
||||
|
||||
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER,
|
||||
"Stasis JSON Generators and Validators - {{{description}}}",
|
||||
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER, "Stasis JSON Generators and Validators - {{{description}}}",
|
||||
.load = load_module,
|
||||
.unload = unload_module,
|
||||
.load_pri = AST_MODPRI_DEFAULT,
|
||||
|
Reference in New Issue
Block a user