summaryrefslogtreecommitdiffstats
path: root/api4/params.go
Commit message (Collapse)AuthorAgeFilesLines
* APIv4 DELETE /users/{user_id}/posts/{post_id}/reactions/name (#6117)Saturnino Abril2017-04-221-0/+5
| | | | | | | | | | * APIv4 DELETE /users/{user_id}/posts/{post_id}/reactions/name * updated v3 deleteReaction endpoint * update parameter of app.DeleteReactionForPost() * update utils.IsValidAlphaNum, add utils.IsValidAlphaNumHyphenUnderscore, and add related tests
* Implement v4 endpoints for OAuth (#6040)Joram Wilander2017-04-201-0/+10
| | | | | | | | | | | | | | | | | | * Implement POST /oauth/apps endpoint for APIv4 * Implement GET /oauth/apps endpoint for APIv4 * Implement GET /oauth/apps/{app_id} and /oauth/apps/{app_id}/info endpoints for APIv4 * Refactor API version independent oauth endpoints * Implement DELETE /oauth/apps/{app_id} endpoint for APIv4 * Implement /oauth/apps/{app_id}/regen_secret endpoint for APIv4 * Implement GET /user/{user_id}/oauth/apps/authorized endpoint for APIv4 * Implement POST /oauth/deauthorize endpoint
* PLT-5860 Updated copyright date (#6058)Harrison Healey2017-04-121-1/+1
| | | | | | | | | | | | * PLT-5860 Updated copyright date in about modal * PLT-5860 Updated copyright notice in JSX files * PLT-5860 Updated copyright notice in go files * Fixed misc copyright dates * Fixed component snapshots
* Implement GET /audits endpoint for APIv4 (#5779)Joram Wilander2017-03-211-2/+2
| | | | | | * Implement GET /audits endpoint for APIv4 * Fix log unit test
* Implement compliance endpoints for APIv4 (#5683)Joram Wilander2017-03-131-0/+5
| | | | | | * Implement compliance endpoints for APIv4 * Add paging to get reports endpoint
* Implemented preferences endpoints for apiv4 (#5531)Ruzette Tanyag2017-02-281-14/+24
| | | | | | * implemented preferences endpoints for apiv4 * added user id in preferences endpoints
* Implement GET channels endpoints for APIv4 (#5363)Ruzette Tanyag2017-02-141-12/+22
| | | | | | | | | | | | * implement get channels endpoints and updated drivers and unittests * removed channel deletion on tear down, removed manage permission on get channels endpoints, and updated utils to add constant channel length * added constants for user, team and channel length, updated context to use the model functions * make sure team name length should be less than the minimum length and revert underscore to team name validity * changed post test condition from notfound to unauthorized
* Implement GET `/users/username/{username}` endpoint for APIv4 (#5310)Ruzette Tanyag2017-02-081-0/+5
| | | | | | | | | | | | * added get user by username endpoint * added get user by username unit test and driver * changed username length to 22 characters max * changed Params to UserName to Username * reorganized get user by username and get user by email formatting in model/client4
* Implement GET `/users/email/{email}` endpoint for APIv4 (#5309)Ruzette Tanyag2017-02-071-0/+5
| | | | | | | | | | * 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-0/+23
|
* Implement APIv4 infrastructure (#5191)Joram Wilander2017-01-301-0/+61
* Implement APIv4 infrastructure * Update parameter requirement functions per feedback