mirror of
https://github.com/gogs/gogs.git
synced 2025-05-31 11:42:13 +00:00
template: add more icons for news feed
This commit is contained in:
parent
70072e2842
commit
beea014343
@ -242,12 +242,14 @@ func ActionIcon(opType int) string {
|
|||||||
switch opType {
|
switch opType {
|
||||||
case 1, 8: // Create and transfer repository
|
case 1, 8: // Create and transfer repository
|
||||||
return "repo"
|
return "repo"
|
||||||
case 5, 9: // Commit repository
|
case 5: // Commit repository
|
||||||
return "git-commit"
|
return "git-commit"
|
||||||
case 6: // Create issue
|
case 6: // Create issue
|
||||||
return "issue-opened"
|
return "issue-opened"
|
||||||
case 7: // New pull request
|
case 7: // New pull request
|
||||||
return "git-pull-request"
|
return "git-pull-request"
|
||||||
|
case 9: // Push tag
|
||||||
|
return "tag"
|
||||||
case 10: // Comment issue
|
case 10: // Comment issue
|
||||||
return "comment-discussion"
|
return "comment-discussion"
|
||||||
case 11: // Merge pull request
|
case 11: // Merge pull request
|
||||||
@ -256,6 +258,10 @@ func ActionIcon(opType int) string {
|
|||||||
return "issue-closed"
|
return "issue-closed"
|
||||||
case 13, 15: // Reopen issue or pull request
|
case 13, 15: // Reopen issue or pull request
|
||||||
return "issue-reopened"
|
return "issue-reopened"
|
||||||
|
case 16: // Create branch
|
||||||
|
return "git-branch"
|
||||||
|
case 17, 18: // Delete branch or tag
|
||||||
|
return "alert"
|
||||||
default:
|
default:
|
||||||
return "invalid type"
|
return "invalid type"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user