1
0
mirror of https://github.com/rancher/steve.git synced 2025-07-07 20:08:59 +00:00
steve/pkg/resources/userpreferences/userpreferences.go
2021-03-01 22:26:26 -07:00

21 lines
535 B
Go

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{}
})
}