Skip to content
Snippets Groups Projects
Commit d56cbf43 authored by David M. Lee's avatar David M. Lee
Browse files

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
parent b5f18d16
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment