[PR #5157] [MERGED] Block registration based on email domain #17672

Closed
opened 2025-11-02 14:55:28 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/5157
Author: @adelowo
Created: 10/23/2018
Status: Merged
Merged: 11/15/2018
Merged by: @techknowlogick

Base: masterHead: limit_registration_to_email_domain


📝 Commits (10+)

  • e672015 implement email domain whitelist
  • 4fdd1ae change delimiter to to keep in sync with other sections of the code
  • 7115126 update method name
  • 5dedcfa Merge branch 'master' of https://github.com/go-gitea/gitea into limit_registration_to_email_domain
  • 2b7056e Merge branch 'master' into limit_registration_to_email_domain
  • 2f475d1 add newline
  • 540f8ce Merge remote-tracking branch 'origin/master' into limit_registration_to_email_domain
  • 512c2f2 update function naming and use strings#ToLower
  • a460be6 Merge branch 'master' into limit_registration_to_email_domain
  • 5ac3f3d Merge branch 'master' into limit_registration_to_email_domain

📊 Changes

7 files changed (+106 additions, -0 deletions)

View changed files

📝 custom/conf/app.ini.sample (+3 -0)
📝 docs/content/doc/advanced/config-cheat-sheet.en-us.md (+2 -0)
📝 modules/auth/user_form.go (+29 -0)
modules/auth/user_form_test.go (+64 -0)
📝 modules/setting/setting.go (+2 -0)
📝 options/locale/locale_en-US.ini (+1 -0)
📝 routers/user/auth.go (+5 -0)

📄 Description

Fixes https://github.com/go-gitea/gitea/issues/4305


🔄 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/5157 **Author:** [@adelowo](https://github.com/adelowo) **Created:** 10/23/2018 **Status:** ✅ Merged **Merged:** 11/15/2018 **Merged by:** [@techknowlogick](https://github.com/techknowlogick) **Base:** `master` ← **Head:** `limit_registration_to_email_domain` --- ### 📝 Commits (10+) - [`e672015`](https://github.com/go-gitea/gitea/commit/e672015264722841c0e8a24590546dad2b59c0bf) implement email domain whitelist - [`4fdd1ae`](https://github.com/go-gitea/gitea/commit/4fdd1aea44222a3b74de2f69bd5c96a1e783dd47) change delimiter to to keep in sync with other sections of the code - [`7115126`](https://github.com/go-gitea/gitea/commit/7115126bc1965267745facd3b3847849d972cb17) update method name - [`5dedcfa`](https://github.com/go-gitea/gitea/commit/5dedcfae9a97ad94c4ab679a3ee825685011ce89) Merge branch 'master' of https://github.com/go-gitea/gitea into limit_registration_to_email_domain - [`2b7056e`](https://github.com/go-gitea/gitea/commit/2b7056e1c97a588c0a28561577cd39cd8e10aac8) Merge branch 'master' into limit_registration_to_email_domain - [`2f475d1`](https://github.com/go-gitea/gitea/commit/2f475d1bf25f3df62fd3c03c704f2993ab251416) add newline - [`540f8ce`](https://github.com/go-gitea/gitea/commit/540f8ce47937ef9dc9b11be994e832b32ed4364e) Merge remote-tracking branch 'origin/master' into limit_registration_to_email_domain - [`512c2f2`](https://github.com/go-gitea/gitea/commit/512c2f2ded30161b79b538c97b944ec0f91b2ea5) update function naming and use strings#ToLower - [`a460be6`](https://github.com/go-gitea/gitea/commit/a460be6c75174aa1bc6c5dc7295e2f8583524937) Merge branch 'master' into limit_registration_to_email_domain - [`5ac3f3d`](https://github.com/go-gitea/gitea/commit/5ac3f3d0c0fc53226a361f7c1f925bd946a59f4a) Merge branch 'master' into limit_registration_to_email_domain ### 📊 Changes **7 files changed** (+106 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `custom/conf/app.ini.sample` (+3 -0) 📝 `docs/content/doc/advanced/config-cheat-sheet.en-us.md` (+2 -0) 📝 `modules/auth/user_form.go` (+29 -0) ➕ `modules/auth/user_form_test.go` (+64 -0) 📝 `modules/setting/setting.go` (+2 -0) 📝 `options/locale/locale_en-US.ini` (+1 -0) 📝 `routers/user/auth.go` (+5 -0) </details> ### 📄 Description Fixes https://github.com/go-gitea/gitea/issues/4305 --- <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 14:55:28 -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#17672