summaryrefslogtreecommitdiffstats
path: root/app/user.go
Commit message (Collapse)AuthorAgeFilesLines
...
* Implement password reset endpoints for APIv4 (#5256)Joram Wilander2017-02-071-4/+4
|
* Implement PUT /users/{user_id}/password endpoint for APIv4 (#5243)Joram Wilander2017-02-071-6/+3
|
* Implement GET `/users/email/{email}` endpoint for APIv4 (#5309)Ruzette Tanyag2017-02-071-1/+6
| | | | | | | | | | * added get user by email endpoint for APIv4 * added get user by email endpoint unit test and driver * removed the appended return of user ids on logout * Added RequireEmail to validate user email. Also updated the get user by email endpoint and unit test
* Implement GET /users endpoint for APIv4 (#5277)Joram Wilander2017-02-031-9/+125
|
* Implement POST /users/ids endpoint for APIv4 (#5274)Joram Wilander2017-02-031-2/+8
|
* PLT-5365 Import of basic user properties. (#5231)George Goldberg2017-01-311-24/+35
|
* Implement APIv4 infrastructure (#5191)Joram Wilander2017-01-301-0/+108
| | | | | | * Implement APIv4 infrastructure * Update parameter requirement functions per feedback
* More app code migration (#5170)Joram Wilander2017-01-251-4/+150
| | | | | | | | * Migrate admin functions into app package * More user function refactoring * Move post functions into app package
* Move permissions code into app package (#5146)Joram Wilander2017-01-231-1/+1
| | | | | | * Move permissions code into app package * Revert getPosts permission
* Migrate functions to app package (#5106)Joram Wilander2017-01-191-2/+357
| | | | | | | | | | | | | | | | | | * Refactor and move session logic into app package * Refactor email functions into the app package * Refactor password update into app package * Migrate user functions to app package * Move team functions into app package * Migrate channel functions into app package * Pass SiteURL through to app functions * Update based on feedback
* Refactor and migrate more functions out of api into app package (#5063)Joram Wilander2017-01-131-0/+421
|
* PLT-4938 Add app package and move logic over from api package (#4931)Joram Wilander2017-01-131-0/+60
* Add app package and move logic over from api package * Change app package functions to return errors * Move non-api tests into app package * Fix merge