summaryrefslogtreecommitdiffstats
path: root/api4/oauth_test.go
Commit message (Collapse)AuthorAgeFilesLines
* Reduce utils.Cfg references (#7650)Chris2017-10-181-67/+67
| | | | | | | | | | | | * app.UpdateConfig method * test fix * another test fix * the config override option as-was is just error prone, remove it for now * derp
* Don't use global app for api / api4 tests (#7528)Chris2017-10-021-10/+10
| | | | | | | | | | | | | | * don't use global app for api / api4 tests * put sleep back. we're gonna have to do some goroutine wrangling * fix oauth test config assumptions * jobs package, i'm comin' for you next * app test fix * try increasing sleep a little
* Implement update OAuthApp endpoint for APIv4, add test (#7413)n1aba2017-09-181-0/+106
|
* Renaming repoChristopher Speller2017-09-061-2/+2
|
* Various patchesJoramWilander2017-09-061-2/+10
|
* Implement v4 endpoints for OAuth (#6040)Joram Wilander2017-04-201-0/+611
* 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