giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
25 lines
467 B
Go
25 lines
467 B
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package web
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"gitea.dev/modules/setting"
|
|
"gitea.dev/services/context"
|
|
)
|
|
|
|
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,
|
|
})
|
|
}
|