Method: Content#get_author

Defined in:
lib/user/content/content.rb

#get_author(id) ⇒ Object

Get author.

Get an author.

Parameters

id

(Integer) – Author id.

Example

@data = @mints_user.get_author(1)


57
58
59
# File 'lib/user/content/content.rb', line 57

def get_author(id)
    return @client.raw("get", "/content/authors/#{id}")
end