diff options
author | Thibault Meyer <meyer.thibault@gmail.com> | 2016-11-10 21:05:52 +0100 |
---|---|---|
committer | Thibault Meyer <meyer.thibault@gmail.com> | 2016-11-10 21:05:52 +0100 |
commit | b0ddced2b5b8338975e4d9b0d066fd9553574a43 (patch) | |
tree | a976a0f49a506b8a5333500e0b0a41d635558df4 /models/issue_comment.go | |
parent | a4454f5d0fbeaacb94668012acbb4296465cb28f (diff) | |
parent | 4247304f5aeb791e3e201947478eef4964744146 (diff) | |
download | gitea-b0ddced2b5b8338975e4d9b0d066fd9553574a43.tar.gz gitea-b0ddced2b5b8338975e4d9b0d066fd9553574a43.zip |
Merge remote-tracking branch 'upstream/master' into feature/rewrite-xorm-queries
# Conflicts:
# models/git_diff.go
# models/issue.go
# models/org.go
# models/pull.go
# models/repo.go
Diffstat (limited to 'models/issue_comment.go')
-rw-r--r-- | models/issue_comment.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/models/issue_comment.go b/models/issue_comment.go index 53a667f825..7c46d25736 100644 --- a/models/issue_comment.go +++ b/models/issue_comment.go @@ -12,10 +12,10 @@ import ( "github.com/Unknwon/com" "github.com/go-xorm/xorm" - api "github.com/go-gitea/go-sdk/gitea" + api "code.gitea.io/go-sdk/gitea" - "github.com/go-gitea/gitea/modules/log" - "github.com/go-gitea/gitea/modules/markdown" + "code.gitea.io/gitea/modules/log" + "code.gitea.io/gitea/modules/markdown" ) // CommentType defines whether a comment is just a simple comment, an action (like close) or a reference. |