dashboard: do not show sso info in postinstall dialog

This commit is contained in:
Johannes Zellner
2024-06-25 16:56:33 +02:00
parent a4dd6cc928
commit 73b20ae809
2 changed files with 7 additions and 15 deletions

View File

@@ -139,12 +139,10 @@ angular.module('Application').controller('AppsController', ['$scope', '$translat
$scope.appPostInstallConfirm = {
app: {},
message: '',
confirmed: false,
show: function (app) {
$scope.appPostInstallConfirm.app = app;
$scope.appPostInstallConfirm.message = app.manifest.postInstallMessage;
$scope.appPostInstallConfirm.confirmed = false;
$('#appsPostInstallConfirmModal').modal('show');
@@ -152,8 +150,6 @@ angular.module('Application').controller('AppsController', ['$scope', '$translat
},
submit: function () {
if (!$scope.appPostInstallConfirm.confirmed) return;
$scope.appPostInstallConfirm.app.pendingPostInstallConfirmation = false;
delete localStorage['confirmPostInstall_' + $scope.appPostInstallConfirm.app.id];