2024-02-15 10:49:13 -07:00
|
|
|
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package web
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2024-02-27 00:12:22 -07:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2024-02-15 10:49:13 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
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,
|
|
|
|
})
|
|
|
|
}
|