summaryrefslogtreecommitdiffstats
path: root/templates/user/settings (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-10-22Add comment replies (#5104)Jonas Franz6-10/+14
* Add comment replies * Replace reviewID with review.ID
2018-10-21Increase the retry limit to 20 times and the interval to 200ms (#5134)Mura Li1-2/+9
The original settings has less tolerance and would fail on some environments.
2018-10-21Fix Swagger JSON autogeneration issues. (#4845)zeripath23-66/+298
* Fix Swagger JSON. Remove unnecessary schema references for the forbidden and empty responses Signed-off-by: Andrew Thornton <art27@cantab.net> * Fix swagger API for CreateAccessToken * Fix admin create org swagger * Fix swagger for adminCreateRepo * More swagger fixes Set int64 format for those which are int64 Some more form fixes * Fix swagger description of GET /repos/{owner}/{repo}/pulls
2018-10-21Fix SQL quoting (#5117)Filip Navara1-1/+1
`show` is keyword in MySQL and has to be quoted to reference a column name. Use grave accents (ASCII code 96) for quoting to match rest of the source code. It's non-standard SQL, but it's supported by SQLite and MySQL. Signed-off-by: Filip Navara <navara@emclient.com>
2018-10-21Add must-change-password flag to cli for creating a user (#4955)Lanre Adelowo1-5/+17
* add support for an admin to force a user to change his/her password from thee cli * use BoolFlag instead * default to true * simplify by removing unnneccessary if/else
2018-10-20Remove check for negative length (#5120)Oleg Kovalov7-8/+8
2018-10-20Retry test-fixtures loading in case of transaction rollback (#5125)Mura Li1-1/+10
2018-10-20fix fading menu in arc-green theme (#5128)glaszig2-1/+6
* fix fading menu in arc-green theme the menu faded white because it missed proper styling. only visible on viewports narrower than 1200px. * Generate minimized css * compiled arc-green.less to apply changes from 76e4f9a58
2018-10-20Add LFS timeout issue to troubleshooting doc (#5129)James Ravenscroft1-0/+14
2018-10-20Give user a link to create PR after push (#4716)Julien Tant4-0/+197
* Give user a link to create PR after push * Forks now create PR in the base repository + make sure PR creation is allowed * fix code style
2018-10-20Use named const instead of a raw string (#5115)Oleg Kovalov1-1/+1
2018-10-19Use type switch (#5122)Oleg Kovalov2-24/+24
2018-10-19Remove duplicated if bodies (#5121)Oleg Kovalov1-12/+5
2018-10-19Fix deadlock when sqlite (#5118)Lunny Xiao2-14/+18
* fix deadlock when sqlite * fix clonelink deadlock on sqlite
2018-10-19[skip ci] Updated translations via CrowdinGiteaBot1-0/+2
2018-10-19Make switch more clear (#5119)Oleg Kovalov1-3/+2
2018-10-18Fix home page template regression (#5102)Tohka1-1/+1
Commit 7bb4d610e5cca7ad514e377d2b36254a4cfee5b9 tries to take the app_name from the locale, however, it is a user defined setting. This causes the app name to simply display as `app_name` instead of the correct value. templates/helper.go automatically injects the AppName variable into every template, so we can safely use that instead. Signed-off-by: Daniel Derzsi <daniel@tohka.us>
2018-10-18Add notification interface and refactor UI notifications (#5085)Lunny Xiao11-42/+376
* add notification interface and refactor UI notifications * add missing methods on notification interface and notifiy only issue status really changed * implement NotifyPullRequestReview for ui notification
2018-10-18Add support for search by uid (#4876)zeripath3-0/+17
Signed-off-by: Andrew Thornton <art27@cantab.net>
2018-10-18Use APP_NAME on home page (#5048)mcnesium1-1/+1
Would it make sense to actually use the configured app name on the home page?
2018-10-18Use native go method to get current user rather than environment variable ↵SagePtr2-10/+48
(#4930) * Use native go method to get current user rather than environment var * Use t.Skip instead of return in test