summaryrefslogtreecommitdiffstats
path: root/client/components/settings
diff options
context:
space:
mode:
authorguillaume <guillaume.cassou@orange.fr>2019-04-26 17:53:48 +0200
committerguillaume <guillaume.cassou@orange.fr>2019-04-26 17:53:48 +0200
commitcdef8a33e4df1caf9c8796ded4d946a76acb28a0 (patch)
treea431793537f13907abcb68992c551ec450e567b4 /client/components/settings
parent11a91bfc786789df24a9e1d9a4b10365bfbd0deb (diff)
downloadwekan-cdef8a33e4df1caf9c8796ded4d946a76acb28a0.tar.gz
wekan-cdef8a33e4df1caf9c8796ded4d946a76acb28a0.tar.bz2
wekan-cdef8a33e4df1caf9c8796ded4d946a76acb28a0.zip
Delete user feature
Diffstat (limited to 'client/components/settings')
-rw-r--r--client/components/settings/peopleBody.jade5
-rw-r--r--client/components/settings/peopleBody.js9
-rw-r--r--client/components/settings/peopleBody.styl12
3 files changed, 25 insertions, 1 deletions
diff --git a/client/components/settings/peopleBody.jade b/client/components/settings/peopleBody.jade
index 4dca5cb1..15deb005 100644
--- a/client/components/settings/peopleBody.jade
+++ b/client/components/settings/peopleBody.jade
@@ -107,5 +107,8 @@ template(name="editUserPopup")
label
| {{_ 'password'}}
input.js-profile-password(type="password")
+ div.buttonsContainer
+ input.primary.wide(type="submit" value="{{_ 'save'}}")
+ div
+ input#deleteButton.primary.wide(type="button" value="{{_ 'delete'}}")
- input.primary.wide(type="submit" value="{{_ 'save'}}")
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();
+ },
});
diff --git a/client/components/settings/peopleBody.styl b/client/components/settings/peopleBody.styl
index b98c5340..80387611 100644
--- a/client/components/settings/peopleBody.styl
+++ b/client/components/settings/peopleBody.styl
@@ -34,3 +34,15 @@ table
button
min-width: 60px;
+
+.content-wrapper
+ margin-top: 10px
+
+.buttonsContainer
+ display: flex
+
+ input
+ margin: 0
+
+ div
+ margin: auto