Minor improvements

This commit is contained in:
Julien Lengrand-Lambert
2021-03-17 10:56:20 +01:00
parent 95f4a80d51
commit 53cdfb79b7
2 changed files with 4 additions and 2 deletions

View File

@@ -28,10 +28,11 @@ public class LaunchRequestHandler implements RequestHandler {
@Override
public Optional<Response> handle(HandlerInput input) {
String speechText = "Welcome to GitHub templates! Let's create a repository!";
String speechText = "Welcome to GitHub templates! What would you want to do today!";
String repromptText = "Github Templates here, what shall I do?!";
return input.getResponseBuilder()
.withSpeech(speechText)
.withReprompt(speechText)
.withReprompt(repromptText)
.build();
}

View File

@@ -14,6 +14,7 @@ public class GithubAPI {
"java", new Pair<>("Spring-Boot-Framework", "Spring-Boot-Application-Template"),
"typescript", new Pair<>("carsonfarmer", "ts-template"),
"javascript", new Pair<>("jlengrand", "openwc-template"),
"HTML", new Pair<>("jlengrand", "openwc-template"),
"elm", new Pair<>("jlengrand", "elm-firebase")
);