Sha256: 238bbadad3447ea8d08a357da7c2703d6b377a7179042cb1bde65ce05ce7957c
Contents?: true
Size: 458 Bytes
Versions: 76
Compression:
Stored size: 458 Bytes
Contents
module ShopifyAPI class Comment < Base def remove; load_attributes_from_response(post(:remove, {}, only_id)); end def spam; load_attributes_from_response(post(:spam, {}, only_id)); end def approve; load_attributes_from_response(post(:approve, {}, only_id)); end def restore; load_attributes_from_response(post(:restore, {}, only_id)); end def not_spam; load_attributes_from_response(post(:not_spam, {}, only_id)); end end end
Version data entries
76 entries across 76 versions & 1 rubygems