mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Merge pull request #320 from anmol26s/dev
Trim username while new user creation to eliminate unecessary error
This commit is contained in:
commit
f78e91bad5
1 changed files with 2 additions and 1 deletions
|
@ -207,6 +207,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
c.params['domain'] = c.params['domain'].slice(1);
|
c.params['domain'] = c.params['domain'].slice(1);
|
||||||
|
c.params['username'] = c.params['username'].trim();
|
||||||
|
|
||||||
c.api('POST', '/users', c.params.toHash(), function(data) {
|
c.api('POST', '/users', c.params.toHash(), function(data) {
|
||||||
c.redirect_to('#/users');
|
c.redirect_to('#/users');
|
||||||
|
|
Loading…
Reference in a new issue