summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2017-03-05 20:16:12 +0200
committerLauri Ojansivu <x@xet7.org>2017-03-05 20:16:12 +0200
commit44dbe43ac4fa4a32d175fead36f9371a67a634a0 (patch)
tree261793cd8addc86b7ec5f82f4e777604629d697b /CHANGELOG.md
parentcbc3c8224fbed643780c5be20221269b62e50ac6 (diff)
downloadwekan-44dbe43ac4fa4a32d175fead36f9371a67a634a0.tar.gz
wekan-44dbe43ac4fa4a32d175fead36f9371a67a634a0.tar.bz2
wekan-44dbe43ac4fa4a32d175fead36f9371a67a634a0.zip
Add Admin Panel:
1) Disable Self-Registration and invite users 2) SMTP settings.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md22
1 files changed, 20 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e2f1bb5a..9fed930d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,24 @@ This release adds the following supported platforms:
and adds the following new features:
+* Admin Panel:
+ 1) Disable Self-Registration and invite users
+ 2) SMTP settings.
+
+ Adding Admin user in mongo cli:
+ 1) Use database that has wekan data, for example:
+```
+ use admin;
+```
+ 2) Add Admin rights to some Wekan username:
+```
+ db.users.update({username:'admin-username-here'},{$set:{isAdmin:true}})
+```
+ Hiding Admin panel by removing Admin rights:
+```
+ use admin;
+ db.settings.remove({});
+```
* Make Due Date layout nicer on minicard;
* Added tooltip for board menu and sidebar buttons;
* [Wekan database cleanup script](https://github.com/wekan/wekan-cleanup);
@@ -33,8 +51,8 @@ and fixes the following bugs:
* Invite user with lower case email;
* Typos.
-Thanks to GitHub users eemeli, entrptaher, fmonthel, jLouzado, maulal,
-pra85, vuxor, whittssg2 and xet7 for their contributions.
+Thanks to GitHub users eemeli, entrptaher, fmonthel, jLouzado, lkisme,
+maulal, pra85, vuxor, whittssg2 and xet7 for their contributions.
# v0.11.1-rc1 2017-02-10 Wekan prerelease