summaryrefslogtreecommitdiffstats
path: root/models/users.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix lint warningsGhassen Rjab2018-02-271-6/+6
|
* Add trailing commaAndrés Manelli2018-02-021-1/+1
|
* Add default swimlane to welkome boardAndrés Manelli2018-02-021-0/+5
|
* Allow admin to change user password in admin panelThuan Pham Quoc2017-12-011-0/+7
|
* REST API better error output. Thanks to soohwa ! Related #1037Lauri Ojansivu2017-11-191-72/+122
|\
| * Add REST API better error outputsoohwa2017-10-151-71/+121
| |
* | Fix: Helper to list boards for user. Thanks to milesibastos ! Closes #1326Lauri Ojansivu2017-11-191-1/+1
| |
* | Fix Missing trailing comma in users.jsThuan Pham Quoc2017-11-161-1/+1
| |
* | Added update all user profile from admin panelThuan Pham Quoc2017-11-081-44/+57
| |
* | Updated users methods to get user id from client on updating user data, is ↵Thuan Pham Quoc2017-11-081-7/+8
|/ | | | aimed to support admin update other user profile
* fix lint errorsoohwa2017-10-131-1/+1
|
* fix lint errorsoohwa2017-10-131-1/+1
|
* fix lint errorssoohwa2017-10-131-13/+13
|
* Add the ability for the admin :soohwa2017-10-131-0/+38
| | | | | | - disabling a login for a user (not himself) - enabling a login for a user - transfering the ownership of all user's boards to himself
* Remove trailing spacesoohwa2017-10-081-1/+1
|
* Add commentsoohwa2017-10-071-0/+6
|
* Change fromAdmin into createdThroughApisoohwa2017-10-061-4/+4
|
* Clear "fromAdmin". Thx to nztqa.soohwa2017-10-061-1/+3
|
* Fix password not savedsoohwa2017-10-011-1/+1
|
* Lint errorsoohwa2017-09-251-3/+3
|
* Fix https://github.com/wekan/wekan/issues/1249soohwa2017-09-251-0/+14
|
* v0.41v0.41Lauri Ojansivu2017-09-251-14/+0
|
* Fix lint errors.Lauri Ojansivu2017-09-241-3/+3
|
* Allow admin to create user despite disabling registration throught rest api.none2017-09-231-0/+14
|
* Add change email addressnztqa2017-08-071-0/+22
| | | | Set allow email change in admin panel
* Fixed eslint errorsmayjs2017-05-151-1/+1
|
* let -> constmayjs2017-05-151-1/+1
|
* Added an endpoint to get the user referenced by the given tokenmayjs2017-05-151-0/+10
|
* add token authentication, only admin can use apihuneau romain2017-05-111-0/+4
|
* REST API - Meteor 1.4 - first step issueLauri Ojansivu2017-04-271-29/+75
|
* dangling commas errorStephen Moloney2017-04-061-2/+2
|
* First user is admin only if not running in sandstormJulen Landa Alustiza2017-04-021-1/+1
|
* Add isAdmin to user SchemaJulen Landa Alustiza2017-04-021-0/+4
|
* Fix email settings loading:Julen Landa Alustiza2017-04-011-18/+16
| | | | | | | | | | | MAIL_URL was overriden with database info all the time. Now if MAIL_URL exists is not overwritten and if neither MAIL_URL nor exists valid admin panel data MAIL_URL is not set. MAIL_FROM was ignored. Same behaviour, env variable has bigger priority than database configuration. On both cases, althrought environment variable is set, updating admin-panel mail settings will load new info and ignore the environment variable. Remove some code that is not needed anymore
* Merge pull request #925 from rhelsing/comment-permissionsLauri Ojansivu2017-03-281-0/+10
|\ | | | | Comment permissions
| * comment only working, naive implementation completeRyan Helsing2017-03-181-0/+5
| |
| * cant see add list if comment onlyRyan Helsing2017-03-181-0/+5
| |
* | Merge pull request #943 from Zokormazo/smtpLauri Ojansivu2017-03-281-18/+18
|\ \ | | | | | | Don't send emails if missing smtp host
| * | Don't send emails if missing smtp hostJulen Landa Alustiza2017-03-281-18/+18
| |/
* / Remove invitation code if email sending failed, improve registration process ↵lkisme2017-03-281-8/+16
|/ | | | with invitation
* Fix merge conflict.Lauri Ojansivu2017-03-051-1/+44
|\
| * wording change, email sending optimization, add texts to i18nlkisme2017-02-261-5/+5
| |
| * Admin panel:lkisme2017-02-241-1/+44
| | | | | | | | | | | | | | Only invited user can register in strict mode, Set mail server in admin panel, Switch strict mode in admin panel, Invite people to system in admin panel
* | [ENH] Invite user with lower case emailFlorent MONTHEL2017-03-041-2/+3
|/
* fixed few overseightsMario Orlicky2016-11-251-1/+1
|
* New option to set up minimum limit to show cards count for each list in boardMario Orlicky2016-11-251-0/+17
|
* Fixed buildMario Orlicky2016-11-191-2/+2
|
* New change settings option and possibility to hide system messagaesMario Orlicky2016-11-191-0/+21
|
* Fix login on Sandstorm by not creating welcome boardsDrew Fisher2016-11-031-17/+23
| | | | | | | | | | | | | | | | | This one is a pretty strange chain of events: * fetching /.sandstorm-login via accounts-sandstorm's rendezvous protocol causes a user to be created in the users collection * models/users.js has hooks to create a board and lists when a user is created * models/activities.js has a hook to create activity entries when a list is created * this hook does not handle not having no boardId, which results in attempting to run the hook with boardId: 'false'. 'false' does not have a title attribute, which causes the whole method call to throw an exception. * This makes the initial login fail. While there may be other bugs, the simple fix is to not create the board and lists when running under Sandstorm, where you only have one board anyway.
* Merge #616 into develMaxime Quandalle2016-07-181-30/+109
|\