From e1e0f2944b960e74e4b1fdfcde954675de7599f9 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 17 Sep 2019 15:40:04 +0200 Subject: [PATCH] Make uninstall a separate view --- src/views/app.html | 26 +++++++++++++++++--------- src/views/app.js | 3 +++ 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/src/views/app.html b/src/views/app.html index 04f69faf5..9ea618c11 100644 --- a/src/views/app.html +++ b/src/views/app.html @@ -31,20 +31,17 @@ } -
@@ -550,6 +547,17 @@
+
+
+
+

Deleting the app will also remove all it's data.

+

App backups are not removed and will be cleaned up based on the backup policy.

+ + +
+
+
+ diff --git a/src/views/app.js b/src/views/app.js index 46eab15bd..47dbf8ddd 100644 --- a/src/views/app.js +++ b/src/views/app.js @@ -505,6 +505,9 @@ angular.module('Application').controller('AppController', ['$scope', '$location' error: {}, show: function () { + }, + + ask: function () { $('#uninstallModal').modal('show'); },