Module: PublicTags
- Included in:
- PublicConfig
- Defined in:
- lib/pub/config/tags.rb
Instance Method Summary collapse
-
#get_tag(slug, options = nil) ⇒ Object
Get Tag.
-
#get_tags(options = nil) ⇒ Object
Get Tags.
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
= {
fields: "id, tag"
}
@data = @mints_pub.get_tag("tag-example", )
39 40 41 |
# File 'lib/pub/config/tags.rb', line 39 def get_tag(slug, = nil) @client.raw('get', "/config/tags/#{slug}", ) 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.
Second Example
= {
fields: "id, tag"
}
@data = @mints_pub.()
19 20 21 |
# File 'lib/pub/config/tags.rb', line 19 def ( = nil) @client.raw('get', '/config/tags', ) end |