summaryrefslogtreecommitdiffstats
path: root/options
Commit message (Collapse)AuthorAgeFilesLines
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-051-0/+2
|
* Pull request conflict files detection (#5951)Lunny Xiao2019-02-051-0/+1
| | | | | | | | | | * add conflict detection * test pull request conflict files * fix detection files number * fix comments
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-052-0/+2
|
* Automatically clear stopwatch on merging a PR (#4327)Lanre Adelowo2019-02-051-0/+1
| | | | | | | | | | | | | | | | | | | | * Don't display buttons if there are no notices * clear stopwatch on merging a PR * remove redundant gt check * use ctx.Flash as per @bkcsoft comment * stop timer on closing issues/PRs too * updated translation as per review * redirect to login page after successfully activating account * remove unrelated changes * stop timer for issues that are closed via commits too..Not just the 'close' UI button
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-042-0/+5
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-0413-13/+0
|
* Fix ssh deploy and user key constraints (#1357) (#5939)zeripath2019-02-031-1/+1
| | | | | | | | | | | | | | | | 1. A key can either be an ssh user key or a deploy key. It cannot be both. 2. If a key is a user key - it can only be associated with one user. 3. If a key is a deploy key - it can be used in multiple repositories and the permissions it has on those repositories can be different. 4. If a repository is deleted, its deploy keys must be deleted too. We currently don't enforce any of this and multiple repositories access with different permissions doesn't work at all. This PR enforces the following constraints: - [x] You should not be able to add the same user key as another user - [x] You should not be able to add a ssh user key which is being used as a deploy key - [x] You should not be able to add a ssh deploy key which is being used as a user key - [x] If you add an ssh deploy key to another repository you should be able to use it in different modes without losing the ability to use it in the other mode. - [x] If you delete a repository you must delete all its deploy keys. Fix #1357
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-311-1/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-293-0/+20
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-287-7/+1
|
* Fix "pulls.blocked_by_approvals" text (#5879)Lanre Adelowo2019-01-281-1/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-284-0/+89
|
* Fix wording of #5858 issue.review.reject string (#5869)zeripath2019-01-271-1/+1
| | | | | As per @lafriks comment this should be: requested changes Signed-off-by: Andrew Thornton <art27@cantab.net>
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-271-0/+8
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-2711-20/+18
|
* Rename reject to 'request changes' (#5858)Lanre Adelowo2019-01-261-2/+2
| | | | | | * remame reject to 'request changes * make usee of requested changes in issue's view content
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-261-0/+15
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-241-0/+27
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-241-0/+19
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-2329-0/+29
|
* Feature: Archive repos (#5009)kolaente2019-01-231-0/+16
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-222-0/+5
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-211-1/+4
|
* Disallow empty titles (#5785)Lanre Adelowo2019-01-211-0/+1
| | | | | | | | | | | | * add util method and tests * make sure the title of an issue cannot be empty * wiki title cannot be empty * pull request title cannot be empty * update to make use of the new util methof
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-211-0/+2
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-191-0/+110
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-1917-17/+0
|
* Fix wording when user is unassigned from an issue (#5769)Lanre Adelowo2019-01-191-1/+2
| | | | Previous Gitea would display that the user had unassigned themselves even if the actor was not the user. Fixes #4418
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-191-0/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-181-0/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-1820-20/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-1820-20/+20
|
* Refactor repo.isBare to repo.isEmpty #5629 (#5714)zeripath2019-01-1721-21/+21
| | | | | | | | * Refactor repo.isBare to repo.isEmpty #5629 Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove Sync call
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-151-3/+4
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-143-0/+11
|
* Discord Oauth2 support (#4476)techknowlogick2019-01-131-0/+1
| | | | | | | | | | | | | | * add discord auth * add vendor for discord * fix syntax error * make fmt * update version of goth in use * update markbates/goth
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-123-1/+10
|
* allow user fork repo even when as a guest.. This will prompt the user to ↵Lanre Adelowo2019-01-101-0/+1
| | | | login and if authentication was successful, the user will be redirected to fork the repo (#5690)
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-113-2/+20
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-091-0/+4
|
* Allow for user specific themes (#5668)Lanre Adelowo2019-01-091-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | * add migration and basic UI for changing a user's theme * update user themem * use right text on button * load theme based on users' selection * load theme based on users' selection in pwa too * update sample config * delete older theme loading * implement AfterLoad to set users' theme properly * set up default theme when creating a user. This uses the installation wide theme * use flash messages for error * set default theme when creating a user from the cli * fix @lunny review
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-042-78/+1101
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-041-0/+9
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-031-0/+11
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-01-021-0/+3
|
* [skip ci] Updated translations via CrowdinGiteaBot2018-12-3110-11/+4
|
* Webhook for Pull Request approval/rejection (#5027)Lanre Adelowo2018-12-271-1/+1
|
* Add rebase with merge commit merge style (#3844) (#4052)Julian2018-12-271-0/+2
| | | Signed-off-by: Julian Tölle <julian.toelle97@gmail.com>
* [skip ci] Updated translations via CrowdinGiteaBot2018-12-261-1/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2018-12-241-0/+75
|