aboutsummaryrefslogtreecommitdiff
path: root/models/action.go
Commit message (Collapse)AuthorAge
* internal: move packages under this directory (#5836)Unknwon2019-10-24
| | | | | | | | | | | | | | | | | | * Rename pkg -> internal * Rename routes -> route * Move route -> internal/route * Rename models -> db * Move db -> internal/db * Fix route2 -> route * Move cmd -> internal/cmd * Bump version
* Enable Go modules (#5835)Unknwon2019-10-23
| | | | | | | | | | | | | | | | * Remove vendor * Enable Go modules * ci: add command to fetch dependencies * ci: update setting * ci: update settings * Require Go 1.11 * Rename module name to gogs.io/gogs
* Include the Sha in webhook create payloads. (#5689)Robin van Boven2019-07-09
|
* models/action: skip issue index parsing while using external issue tracker ↵Unknwon2018-12-17
| | | | (#5551)
* *: use jsoniter to replace encoding/jsonUnknwon2018-06-09
|
* models: skip JSON for fields skipped by XORMUnknwon2018-06-09
| | | | Reduce output JSON size by backup command
* models/mirror: shot push webhook after synced commits (#4528)Unknwon2018-06-03
|
* mirror: show sync feeds on dashboard (#2017)Unknwon2018-05-30
|
* *: rename "gogits" to "gogs"Unknwon2018-05-27
|
* hook: fix email not sent after push (#4430)Unknwon2017-07-27
| | | | | Turns out mail service was not initialized at all, also mail must be sent in sync in hook mode before program exits.
* pkg/process: fix potential race conditionUnknwon2017-06-11
| | | | | | Following conditions were not protected: 1. Use and increase next pid 2. Append and remove process from the list
* random: some code simplifyUnknwon2017-06-11
|
* repo: change action visibility when repository visibility changed (#4414)Unknwon2017-06-11
|
* pkg/setting: rename {AppUrl, AppSubUrl} -> {AppURL, AppSubURL}Unknwon2017-04-06
|
* Refactoring: rename pkg/base -> pkg/toolUnknwon2017-04-05
|
* Refactoring: rename modules -> pkgUnknwon2017-04-04
| | | | | | | | Reasons to change: 1. Shorter than 'modules' 2. More generally used by other Go projects 3. Corresponds to the naming of '$GOPATH/pkg' directory
* issue: fix redirect to random issue if index does not exist (#4315)Unknwon2017-03-22
|
* dashboard/feeds: able to load more history (#2511)Unknwon2017-03-16
|
* setting: able to config dashboard news feed paging number (#4247)Unknwon2017-03-16
|
* webhook: add file status to push event (#3897)Unknwon2017-03-16
|
* models: rename ErrUserNotExist -> errors.UserNotExistUnknwon2017-03-16
|
* webhook: add fork eventUnknwon2017-02-27
|
* dashboard: add delete branch and tag news feedsUnknwon2017-02-27
|
* webhook: able to detect delete branch or tag (#2315)Unknwon2017-02-27
|
* repo: able to perform initial commit on behave of actual userUnknwon2017-02-27
|
* comment: only show title of commit message from a commit ref (#3206)Unknwon2017-02-22
|
* webhook: add native Discord supportUnknwon2017-02-18
|
* Initial version of protected branches (#776)Unknwon2017-02-17
| | | | | - Able to restrict force push and deletion - Able to restrict direct push
* refactoring: SSH and HTTP push procees is now unifiedUnknwon2017-02-16
| | | | | | | | | | | | | | We used to handle SSH and HTTP push separately which produces duplicated code, but now with post-receive hook, the process is unified to one single place and much cleaner. Thus, UpdateTask struct is removed. Narrow down the range of Git HTTP routes to reduce condufsing HTTP Basic Authentication window popup on browser. By detecting <old-commit, new-commit, ref-name> inside post-receive hook, Git HTTP doesn't need to read the whole content body anymore, which completely solve the RAM problem reported in #636.
* git: delegate all server-side Git hooks (#1623)Unknwon2017-02-14
|
* log: start using gopkg.in/clog.v1Unknwon2017-02-09
|
* Fix Typo Errors (#3885)SeongAhJo2016-12-21
| | | | | | * Fix typos * Fix typos
* General code quality improvementUnknwon2016-08-16
|
* #2246 add HTMLURL to webhook typeUnknwon2016-08-16
| | | | - Fill Milestone and Assignee field when available in webhook payload
* models/repo_editor: improve code qualityUnknwon2016-08-15
|
* Fix empty repository panic on send test webhookUnknwon2016-08-15
|
* Replace convert.To with APIFormat callsUnknwon2016-08-14
|
* #2246 fully support of webhooks for pull requestUnknwon2016-08-14
|
* Add committer information to API and Webhooks. Also fixes #3271 (#3414)lstahlman2016-08-09
|
* #2907 Add commit timestamp to webhookUnknwon2016-08-09
|
* #3348 always use relative avatar link in the templateUnknwon2016-08-05
|
* #1384 add pagination for repositoriesUnknwon2016-07-24
|
* Refactor User.Id to User.IDUnknwon2016-07-24
|
* Use struct for UI settingsUnknwon2016-07-24
|
* Remove redundant Unix timestamp method callUnknwon2016-07-23
| | | | Unix() already uses UTC as timezone
* models/repo: remove redundant info for some repo methodsUnknwon2016-07-15
| | | | RepoLink -> Link, RepoRelLink -> RelLink, FullRepoLink -> FullLink
* #2375 preserve cases for action contentUnknwon2016-07-09
|
* Fix capitalisation of repo-name in news (#3203)SjonHortensius2016-06-27
| | | | use 'official' repo.Name instead of incoming repoName; to enforce correct capitalisation
* #2302 Replace time.Time with Unix Timestamp (int64)Unknwon2016-03-09
|
* #1597 fix activitity feeds for pull requestsUnknwon2016-03-05
|