summaryrefslogtreecommitdiffstats
path: root/client/components/settings/peopleBody.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-05-09 16:06:17 +0300
committerGitHub <noreply@github.com>2019-05-09 16:06:17 +0300
commitc8506697776c5f5ed0d82de0f4bd84bcc379db45 (patch)
treed31562f4bd14dedc096f806e2b250a0e7711cf25 /client/components/settings/peopleBody.js
parent04c7372a4e665becb7383c319b9b514217468e54 (diff)
parentcdef8a33e4df1caf9c8796ded4d946a76acb28a0 (diff)
downloadwekan-c8506697776c5f5ed0d82de0f4bd84bcc379db45.tar.gz
wekan-c8506697776c5f5ed0d82de0f4bd84bcc379db45.tar.bz2
wekan-c8506697776c5f5ed0d82de0f4bd84bcc379db45.zip
Merge pull request #2384 from Akuket/origin/edge
Delete user feature
Diffstat (limited to 'client/components/settings/peopleBody.js')
-rw-r--r--client/components/settings/peopleBody.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/client/components/settings/peopleBody.js b/client/components/settings/peopleBody.js
index 3ec96bb0..83cf14fa 100644
--- a/client/components/settings/peopleBody.js
+++ b/client/components/settings/peopleBody.js
@@ -98,6 +98,7 @@ Template.peopleRow.helpers({
Template.editUserPopup.onCreated(function() {
this.authenticationMethods = new ReactiveVar([]);
+ this.errorMessage = new ReactiveVar('');
Meteor.call('getAuthenticationsEnabled', (_, result) => {
if (result) {
@@ -129,6 +130,9 @@ Template.editUserPopup.helpers({
const selected = Users.findOne(userId).authenticationMethod;
return selected === 'ldap';
},
+ errorMessage() {
+ return Template.instance().errorMessage.get();
+ },
});
BlazeComponent.extendComponent({
@@ -220,4 +224,9 @@ Template.editUserPopup.events({
});
} else Popup.close();
},
+
+ 'click #deleteButton'() {
+ Users.remove(this.userId);
+ Popup.close();
+ },
});