Module: PublicTags

Included in:
PublicConfig
Defined in:
lib/pub/config/tags.rb

Instance Method Summary collapse

Instance Method Details

#get_tag(slug, options = nil) ⇒ Object

Get Tag.

Get a single tag.

Parameters

slug

(String) – It’s the string identifier generated by Mints.

options

(Hash) – List of Single Resource Options shown above can be used as parameter.

First Example

@data = @mints_pub.get_tag("tag_slug")

Second Example

options = {
  fields: "id, tag"
}
@data = @mints_pub.get_tag("tag-example", options)

39
40
41
# File 'lib/pub/config/tags.rb', line 39

def get_tag(slug, options = nil)
  @client.raw('get', "/config/tags/#{slug}", options)
end

#get_tags(options = nil) ⇒ Object

Get Tags.

Get a collection of tags.

Parameters

options

(Hash) – List of Resource collection Options shown above can be used as parameter.

First Example

@data = @mints_pub.get_tags

Second Example

options = {
  fields: "id, tag"
}
@data = @mints_pub.get_tags(options)

19
20
21
# File 'lib/pub/config/tags.rb', line 19

def get_tags(options = nil)
  @client.raw('get', '/config/tags', options)
end