webauthn.go 467 B

1234567891011121314151617181920
  1. // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
  2. // SPDX-License-Identifier: Apache-2.0
  3. package form // import "miniflux.app/v2/internal/ui/form"
  4. import (
  5. "net/http"
  6. )
  7. // WebauthnForm represents a credential rename form in the UI
  8. type WebauthnForm struct {
  9. Name string
  10. }
  11. // NewWebauthnForm returns a new WebnauthnForm.
  12. func NewWebauthnForm(r *http.Request) *WebauthnForm {
  13. return &WebauthnForm{
  14. Name: r.FormValue("name"),
  15. }
  16. }