[PR #1314] [MERGED] Show user OpenID URIs in their profile #15858

Closed
opened 2025-11-02 11:56:16 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/1314
Author: @strk
Created: 3/17/2017
Status: Merged
Merged: 3/20/2017
Merged by: @bkcsoft

Base: masterHead: showOpenID


📝 Commits (8)

  • a6f7c0b Show user OpenID URIs in their profile
  • 754e64f Do not use bold for OpenID URI
  • 58b276f Use font-awesome openid logo in user profile
  • 4cb34e5 Make user openid URIs clickable
  • 92800d1 Add show/hide toggle for user's OpenID URIs (default to false)
  • fc223d9 Rename openid show/hide keys and make strings more descriptive
  • f3b4b6c Add unit tests for user_openid table
  • 56b17e6 Use "Show on profile" wording

📊 Changes

11 files changed (+180 additions, -0 deletions)

View changed files

📝 cmd/web.go (+1 -0)
models/fixtures/user_open_id.yml (+17 -0)
📝 models/migrations/migrations.go (+2 -0)
models/migrations/v25.go (+18 -0)
📝 models/user_openid.go (+8 -0)
models/user_openid_test.go (+82 -0)
📝 options/locale/locale_en-US.ini (+2 -0)
📝 routers/user/profile.go (+8 -0)
📝 routers/user/setting_openid.go (+16 -0)
📝 templates/user/profile.tmpl (+8 -0)
📝 templates/user/settings/openid.tmpl (+18 -0)

📄 Description

So you can tell from a quick look if the users are really who you think
they are (if you know their openid)


🔄 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/1314 **Author:** [@strk](https://github.com/strk) **Created:** 3/17/2017 **Status:** ✅ Merged **Merged:** 3/20/2017 **Merged by:** [@bkcsoft](https://github.com/bkcsoft) **Base:** `master` ← **Head:** `showOpenID` --- ### 📝 Commits (8) - [`a6f7c0b`](https://github.com/go-gitea/gitea/commit/a6f7c0b0c920c15d840976c3c6fec4aa15e4f00a) Show user OpenID URIs in their profile - [`754e64f`](https://github.com/go-gitea/gitea/commit/754e64f46f9429e68c71ed56ec08045cc2d5f00b) Do not use bold for OpenID URI - [`58b276f`](https://github.com/go-gitea/gitea/commit/58b276f77c0e912480795b1677eb695b4af0e75e) Use font-awesome openid logo in user profile - [`4cb34e5`](https://github.com/go-gitea/gitea/commit/4cb34e5a44bd9a812b67344b5e7cb7f68ca23c14) Make user openid URIs clickable - [`92800d1`](https://github.com/go-gitea/gitea/commit/92800d13649cbe50af169ebb0c3fcfb966e86957) Add show/hide toggle for user's OpenID URIs (default to false) - [`fc223d9`](https://github.com/go-gitea/gitea/commit/fc223d95e8d86b5310cb9406e51fccf6d4fd6ae3) Rename openid show/hide keys and make strings more descriptive - [`f3b4b6c`](https://github.com/go-gitea/gitea/commit/f3b4b6ce0241e402d7ec64897495375db33fc064) Add unit tests for user_openid table - [`56b17e6`](https://github.com/go-gitea/gitea/commit/56b17e6b745ef083512c3b6480b2623170d8ba63) Use "Show on profile" wording ### 📊 Changes **11 files changed** (+180 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `cmd/web.go` (+1 -0) ➕ `models/fixtures/user_open_id.yml` (+17 -0) 📝 `models/migrations/migrations.go` (+2 -0) ➕ `models/migrations/v25.go` (+18 -0) 📝 `models/user_openid.go` (+8 -0) ➕ `models/user_openid_test.go` (+82 -0) 📝 `options/locale/locale_en-US.ini` (+2 -0) 📝 `routers/user/profile.go` (+8 -0) 📝 `routers/user/setting_openid.go` (+16 -0) 📝 `templates/user/profile.tmpl` (+8 -0) 📝 `templates/user/settings/openid.tmpl` (+18 -0) </details> ### 📄 Description So you can tell from a quick look if the users are really who you think they are (if you know their openid) --- <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 11:56:16 -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#15858