1
0
mirror of https://github.com/rancher/steve.git synced 2025-07-08 12:29:09 +00:00
steve/pkg/resources/userpreferences/userpreferences.go

21 lines
535 B
Go
Raw Normal View History

2021-03-02 05:26:26 +00: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{}
})
}