23 lines
572 B
Go
23 lines
572 B
Go
// Copyright 2017 Frédéric Guillot. All rights reserved.
|
|
// Use of this source code is governed by the Apache 2.0
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package form // import "miniflux.app/ui/form"
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// CategoryForm represents a feed form in the UI
|
|
type CategoryForm struct {
|
|
Title string
|
|
HideGlobally string
|
|
}
|
|
|
|
// NewCategoryForm returns a new CategoryForm.
|
|
func NewCategoryForm(r *http.Request) *CategoryForm {
|
|
return &CategoryForm{
|
|
Title: r.FormValue("title"),
|
|
HideGlobally: r.FormValue("hide_globally"),
|
|
}
|
|
}
|