diff --git a/Readme.md b/Readme.md index dd07c08..549f3d6 100644 --- a/Readme.md +++ b/Readme.md @@ -2,6 +2,8 @@ Build Restful CRUD API for a simple Note-Taking application using Spring Boot, Mysql, JPA and Hibernate. +Version Used for SEC purposes. + ## Requirements 1. Java - 1.8.x diff --git a/src/main/java/com/example/easynotes/controller/IndexController.java b/src/main/java/com/example/easynotes/controller/IndexController.java index f9c5ea4..531e114 100644 --- a/src/main/java/com/example/easynotes/controller/IndexController.java +++ b/src/main/java/com/example/easynotes/controller/IndexController.java @@ -11,6 +11,6 @@ public class IndexController { @GetMapping public String sayHello() { - return "Hello and Welcome to the EasyNotes application. You can create a new Note by making a POST request to /api/notes endpoint."; + return "Hello and Welcome to the EasyNotes application. You can create a new Note by making a POST request to /api/notes endpoint. This app is used to test some devsecops aspects."; } }