Sha256: 5119a5e3b00362e7ddc8c09491d5c3396fc644944b844caa16ddce99a947dbf1
Contents?: true
Size: 1.36 KB
Versions: 9
Compression:
Stored size: 1.36 KB
Contents
# frozen_string_literal: true require 'dato/site/repo/base' module Dato module Site module Repo class ItemType < Base def create(resource_attributes) body = JsonApiSerializer.new( type: :item_type, attributes: %i(api_key name ordering_direction singleton sortable), relationships: { ordering_field: { collection: false, type: :field } }, required_attributes: %i(api_key name ordering_direction singleton sortable) ).serialize(resource_attributes) post_request '/item-types', body end def update(item_type_id, resource_attributes) body = JsonApiSerializer.new( type: :item_type, attributes: %i(api_key name ordering_direction singleton sortable), relationships: { ordering_field: { collection: false, type: :field } }, required_attributes: %i(api_key name ordering_direction singleton sortable) ).serialize(resource_attributes, item_type_id) put_request "/item-types/#{item_type_id}", body end def all get_request '/item-types' end def find(item_type_id) get_request "/item-types/#{item_type_id}" end def destroy(item_type_id) delete_request "/item-types/#{item_type_id}" end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems