class ShopifyAPI::Article

Public Class Methods

authors(options = {}) click to toggle source
# File lib/shopify_api/resources/article.rb, line 14
def self.authors(options = {})
  get(:authors, options)
end
tags(options = {}) click to toggle source
# File lib/shopify_api/resources/article.rb, line 18
def self.tags(options = {})
  get(:tags, options)
end

Public Instance Methods

comments() click to toggle source
# File lib/shopify_api/resources/article.rb, line 10
def comments
  Comment.find(:all, params: { article_id: id })
end