[PR #2856] [MERGED] Add reactions to issues/PR and comments #16635

Closed
opened 2025-11-02 12:15:10 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/2856
Author: @lafriks
Created: 11/5/2017
Status: Merged
Merged: 12/3/2017
Merged by: @lafriks

Base: masterHead: feat/comment_reactions


📝 Commits (4)

  • d2add53 Add reactions to issues, pull requests and comments
  • 5011a9e Merge branch 'master' into feat/comment_reactions
  • a0d1e05 Merge branch 'master' into feat/comment_reactions
  • 3410384 Add Reactions to docs

📊 Changes

24 files changed (+677 additions, -8 deletions)

View changed files

📝 docs/content/page/index.en-us.md (+1 -0)
models/fixtures/reaction.yml (+1 -0)
📝 models/helper.go (+8 -0)
📝 models/issue.go (+34 -2)
📝 models/issue_comment.go (+24 -0)
models/issue_reaction.go (+255 -0)
📝 models/migrations/migrations.go (+2 -0)
models/migrations/v50.go (+28 -0)
📝 models/models.go (+1 -0)
📝 models/user.go (+1 -0)
📝 modules/auth/repo_form.go (+10 -0)
📝 modules/context/context.go (+1 -1)
📝 modules/setting/setting.go (+2 -0)
📝 modules/templates/helper.go (+16 -0)
📝 options/locale/locale_en-US.ini (+2 -0)
📝 public/css/index.css (+1 -1)
📝 public/js/index.js (+49 -0)
📝 public/less/_repository.less (+38 -1)
📝 routers/repo/issue.go (+154 -3)
📝 routers/routes/routes.go (+2 -0)

...and 4 more files

📄 Description

Screenshots:

attels

attels

For unauthorized users and tooltip to show reacted users:
image


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-gitea/gitea/pull/2856 **Author:** [@lafriks](https://github.com/lafriks) **Created:** 11/5/2017 **Status:** ✅ Merged **Merged:** 12/3/2017 **Merged by:** [@lafriks](https://github.com/lafriks) **Base:** `master` ← **Head:** `feat/comment_reactions` --- ### 📝 Commits (4) - [`d2add53`](https://github.com/go-gitea/gitea/commit/d2add53af0f67fe9252cb528a6a56f5243d1193a) Add reactions to issues, pull requests and comments - [`5011a9e`](https://github.com/go-gitea/gitea/commit/5011a9e8515f4be85a5f2f820ddd371c2a91f89f) Merge branch 'master' into feat/comment_reactions - [`a0d1e05`](https://github.com/go-gitea/gitea/commit/a0d1e0521ff6a832cce0272da56e997418068cf9) Merge branch 'master' into feat/comment_reactions - [`3410384`](https://github.com/go-gitea/gitea/commit/3410384986e8a99f58fed50e221e1239b27cda2b) Add Reactions to docs ### 📊 Changes **24 files changed** (+677 additions, -8 deletions) <details> <summary>View changed files</summary> 📝 `docs/content/page/index.en-us.md` (+1 -0) ➕ `models/fixtures/reaction.yml` (+1 -0) 📝 `models/helper.go` (+8 -0) 📝 `models/issue.go` (+34 -2) 📝 `models/issue_comment.go` (+24 -0) ➕ `models/issue_reaction.go` (+255 -0) 📝 `models/migrations/migrations.go` (+2 -0) ➕ `models/migrations/v50.go` (+28 -0) 📝 `models/models.go` (+1 -0) 📝 `models/user.go` (+1 -0) 📝 `modules/auth/repo_form.go` (+10 -0) 📝 `modules/context/context.go` (+1 -1) 📝 `modules/setting/setting.go` (+2 -0) 📝 `modules/templates/helper.go` (+16 -0) 📝 `options/locale/locale_en-US.ini` (+2 -0) 📝 `public/css/index.css` (+1 -1) 📝 `public/js/index.js` (+49 -0) 📝 `public/less/_repository.less` (+38 -1) 📝 `routers/repo/issue.go` (+154 -3) 📝 `routers/routes/routes.go` (+2 -0) _...and 4 more files_ </details> ### 📄 Description Screenshots: ![attels](https://user-images.githubusercontent.com/165205/32414231-0dffb566-c22b-11e7-956b-bd2be6558604.png) ![attels](https://user-images.githubusercontent.com/165205/32414242-2a1e6904-c22b-11e7-979f-c8bb8887828a.png) For unauthorized users and tooltip to show reacted users: ![image](https://user-images.githubusercontent.com/165205/33365595-61d1156c-d4f1-11e7-8292-d1d66c89c3ba.png) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-02 12:15:10 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#16635