Bilal step3 #1

Merged
senaduka merged 7 commits from bilal-step3 into bilal-step1 2017-12-03 18:48:43 +01:00
Showing only changes of commit 124885b41d - Show all commits

View File

@@ -118,21 +118,6 @@ alexaApp.express({
// now POST calls to /test in express will be handled by the app.request() function
// from here on you can setup any other express routes or middlewares as normal
app.set("view engine", "ejs");
alexaApp.launch(function(request, response) {
response.say("You launched Saburly app!");
});
alexaApp.intent("GetProcessIntent", {
"utterances": [
"tell me about projects", "say something about your project", "what are your projects"
]
},
function(request, response) {
response.say("We collaborate closely with our clients at each step of the developmentprocess. From designing the UX to developing the front-end andarchitecting the back-end.");
}
);
app.use (function (req, res, next) {
res.header ('Access-Control-Allow-Origin', '*');