diff --git a/index.js b/index.js index f062e31..0c808a9 100644 --- a/index.js +++ b/index.js @@ -102,7 +102,7 @@ var appServer = function(config) { res.set('Content-Type', 'text/plain').send(app.utterances()); } else { - res.render('test',{"app":app,"schema":app.schema(),"utterances":app.utterances(),"intents":app.intents}); + res.render('test',{"app":app,"schema":app.schema(),"customSlotTypes":app.customSlotTypes(),"utterances":app.utterances(),"intents":app.intents}); } }); } diff --git a/views/test.ejs b/views/test.ejs index 4ba0cce..7e82398 100644 --- a/views/test.ejs +++ b/views/test.ejs @@ -451,6 +451,11 @@ e.$validators.maxlength=function(a,c){return 0>f||e.$isEmpty(c)||c.length<=f}}}}
{{schema|json}}
+

Custom Slot Types

+
+
<%=customSlotTypes%>
+
+

Utterances

<%=utterances%>