1
0
mirror of https://github.com/rancher/steve.git synced 2025-09-01 07:27:46 +00:00
Files
steve/pkg/resources/userpreferences/userpreferences.go

21 lines
535 B
Go
Raw Normal View History

2021-03-01 22:26:26 -07:00
package userpreferences
import (
"net/http"
"github.com/rancher/apiserver/pkg/types"
)
type UserPreference struct {
Data map[string]string `json:"data"`
}
func Register(schemas *types.APISchemas) {
schemas.InternalSchemas.TypeName("userpreference", UserPreference{})
schemas.MustImportAndCustomize(UserPreference{}, func(schema *types.APISchema) {
schema.CollectionMethods = []string{http.MethodGet}
schema.ResourceMethods = []string{http.MethodGet, http.MethodPut, http.MethodDelete}
schema.Store = &localStore{}
})
}