[PR #4227] [MERGED] Telegram webhook #17292

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

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/4227
Author: @techknowlogick
Created: 6/11/2018
Status: Merged
Merged: 4/19/2019
Merged by: @techknowlogick

Base: masterHead: telegram_webhook


📝 Commits (10+)

  • 90c51a8 add telegram webhooks
  • f72631e add telegram webhooks
  • 9a0cc9c set as HTML mode
  • e6ff368 make fmt
  • b140525 Merge branch 'master' into telegram_webhook
  • f4ef346 fix lint error
  • 81a5a62 Merge branch 'master' into telegram_webhook
  • 9fdbf51 Merge branch 'master' into telegram_webhook
  • d5c4ab5 Update tests for telegram
  • ff6dce9 Merge branch 'master' into telegram_webhook

📊 Changes

13 files changed (+478 additions, -1 deletions)

View changed files

📝 models/webhook.go (+18 -0)
models/webhook_telegram.go (+322 -0)
📝 models/webhook_test.go (+3 -0)
📝 modules/auth/repo_form.go (+12 -0)
📝 modules/setting/webhook.go (+1 -1)
📝 options/locale/locale_en-US.ini (+3 -0)
public/img/telegram.png (+0 -0)
📝 routers/repo/webhook.go (+91 -0)
📝 routers/routes/routes.go (+4 -0)
📝 templates/org/settings/hook_new.tmpl (+3 -0)
📝 templates/repo/settings/webhook/list.tmpl (+3 -0)
📝 templates/repo/settings/webhook/new.tmpl (+3 -0)
templates/repo/settings/webhook/telegram.tmpl (+15 -0)

📄 Description

As title


🔄 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/4227 **Author:** [@techknowlogick](https://github.com/techknowlogick) **Created:** 6/11/2018 **Status:** ✅ Merged **Merged:** 4/19/2019 **Merged by:** [@techknowlogick](https://github.com/techknowlogick) **Base:** `master` ← **Head:** `telegram_webhook` --- ### 📝 Commits (10+) - [`90c51a8`](https://github.com/go-gitea/gitea/commit/90c51a82dc133a9ca8bde65226b61ed519a9028b) add telegram webhooks - [`f72631e`](https://github.com/go-gitea/gitea/commit/f72631e072b587ecb251f984644eb48d3430c07e) add telegram webhooks - [`9a0cc9c`](https://github.com/go-gitea/gitea/commit/9a0cc9c1c319ef9d813547a38f512d12db26a8ee) set as HTML mode - [`e6ff368`](https://github.com/go-gitea/gitea/commit/e6ff36807e06ac4c676035eef59f38ec10588830) make fmt - [`b140525`](https://github.com/go-gitea/gitea/commit/b140525d664d23862c0f7b7d5a7fc423d3991059) Merge branch 'master' into telegram_webhook - [`f4ef346`](https://github.com/go-gitea/gitea/commit/f4ef3467b6a24088901b827bae413705436c95c7) fix lint error - [`81a5a62`](https://github.com/go-gitea/gitea/commit/81a5a6298cd34d523c5527621f890de382e2235b) Merge branch 'master' into telegram_webhook - [`9fdbf51`](https://github.com/go-gitea/gitea/commit/9fdbf514519b98c465a27b6e380c8698c7cca4a6) Merge branch 'master' into telegram_webhook - [`d5c4ab5`](https://github.com/go-gitea/gitea/commit/d5c4ab56abd2f16f923f1d66df1109c696f47aa6) Update tests for telegram - [`ff6dce9`](https://github.com/go-gitea/gitea/commit/ff6dce963e3f0932155b5fdac08e76dd4bcedf85) Merge branch 'master' into telegram_webhook ### 📊 Changes **13 files changed** (+478 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `models/webhook.go` (+18 -0) ➕ `models/webhook_telegram.go` (+322 -0) 📝 `models/webhook_test.go` (+3 -0) 📝 `modules/auth/repo_form.go` (+12 -0) 📝 `modules/setting/webhook.go` (+1 -1) 📝 `options/locale/locale_en-US.ini` (+3 -0) ➕ `public/img/telegram.png` (+0 -0) 📝 `routers/repo/webhook.go` (+91 -0) 📝 `routers/routes/routes.go` (+4 -0) 📝 `templates/org/settings/hook_new.tmpl` (+3 -0) 📝 `templates/repo/settings/webhook/list.tmpl` (+3 -0) 📝 `templates/repo/settings/webhook/new.tmpl` (+3 -0) ➕ `templates/repo/settings/webhook/telegram.tmpl` (+15 -0) </details> ### 📄 Description As title --- <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:31:51 -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#17292