aboutsummaryrefslogtreecommitdiff
path: root/models/comment.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
* models: rename Id to IDUnknwon2018-08-16
|
* models: fix delete undesired release attachments when delete a comment (#4627)Unknwon2018-08-16
| | | | Apparently, AfterDelete has ID=0
* models: skip JSON for fields skipped by XORMUnknwon2018-06-09
| | | | Reduce output JSON size by backup command
* *: 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.
* models/comment: remove unused SQL parameter (#4586)Unknwon2017-06-27
|
* issue_comment: fix pg syntax ambiguous (#4586)Unknwon2017-06-27
| | | | Also handle error related to time parsing.
* api: fix ListIssueComments API (#4587)Andy Hochhaus2017-06-27
|
* Refactoring: remove sessionRelease()Unknwon2017-06-11
| | | | XORM supports automatic roll back in session Close() already.
* issue: fix updated_unix is not updated for new comments (#4462)Unknwon2017-06-02
|
* models: remove redundant tags for primary keysUnknwon2017-05-21
|
* 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
* modules: rename markdown -> markupUnknwon2017-03-31
| | | | | | | To further support more markup languages (e.g. Org-mode, AsciiDoc, reStructuredText), the name 'markdown' is inappropriate. This is the first step towards more markup language support.
* models: rename ErrUserNotExist -> errors.UserNotExistUnknwon2017-03-16
|
* webhook: add issue comment eventUnknwon2017-03-09
|
* Some file refactoringUnknwon2017-02-10