From 588f10a73ab1acc73d1023a79f8bff958ca12468 Mon Sep 17 00:00:00 2001 From: ArnaudBuchholz Date: Tue, 14 Jun 2022 08:39:17 -0400 Subject: [PATCH 1/3] Week 1 --- webapp/controller/Main.controller.js | 8 ++++++++ webapp/i18n/i18n.properties | 2 ++ webapp/index.html | 2 +- webapp/manifest.json | 23 +++++++++++++++++++++-- webapp/model/data.json | 17 +++++++++++++++++ webapp/view/Main.view.xml | 14 ++++++++++++++ 6 files changed, 63 insertions(+), 3 deletions(-) create mode 100644 webapp/controller/Main.controller.js create mode 100644 webapp/model/data.json create mode 100644 webapp/view/Main.view.xml diff --git a/webapp/controller/Main.controller.js b/webapp/controller/Main.controller.js new file mode 100644 index 0000000..a9677b8 --- /dev/null +++ b/webapp/controller/Main.controller.js @@ -0,0 +1,8 @@ +sap.ui.define([ + "./BaseController" +], function (BaseController) { + "use strict"; + + return BaseController.extend("ui5.challenge.controller.Main", { + }); +}); diff --git a/webapp/i18n/i18n.properties b/webapp/i18n/i18n.properties index e69de29..aa71b88 100644 --- a/webapp/i18n/i18n.properties +++ b/webapp/i18n/i18n.properties @@ -0,0 +1,2 @@ +appTitle=ui5-challenge +appDescription=ui5-challenge diff --git a/webapp/index.html b/webapp/index.html index 01c1bb6..f3ea286 100644 --- a/webapp/index.html +++ b/webapp/index.html @@ -1,7 +1,7 @@ - title + ui5-challenge