mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	This well-known indicates for password manager, that passkeys are supported. source: https://android-developers.googleblog.com/2023/10/make-passkey-endpoints-well-known-url-part-of-your-passkey-implementation.html spec: https://github.com/ms-id-standards/MSIdentityStandardsExplainers/blob/main/PasskeyEndpointsWellKnownUrl/explainer.md
		
			
				
	
	
		
			25 lines
		
	
	
		
			486 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			486 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2024 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package web
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 
 | |
| 	"code.gitea.io/gitea/modules/context"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| )
 | |
| 
 | |
| type passkeyEndpointsType struct {
 | |
| 	Enroll string `json:"enroll"`
 | |
| 	Manage string `json:"manage"`
 | |
| }
 | |
| 
 | |
| func passkeyEndpoints(ctx *context.Context) {
 | |
| 	url := setting.AppURL + "user/settings/security"
 | |
| 	ctx.JSON(http.StatusOK, passkeyEndpointsType{
 | |
| 		Enroll: url,
 | |
| 		Manage: url,
 | |
| 	})
 | |
| }
 |