class XingApi::Group::Post::Like

Public Class Methods

create(post_id, options = {}) click to toggle source
# File lib/xing_api/group/post/like.rb, line 9
def self.create(post_id, options = {})
  request(:put, "/v1/groups/forums/posts/#{post_id}/like", options)
end
delete(post_id, options = {}) click to toggle source
# File lib/xing_api/group/post/like.rb, line 13
def self.delete(post_id, options = {})
  request(:delete, "/v1/groups/forums/posts/#{post_id}/like", options)
end
list(post_id, options = {}) click to toggle source
# File lib/xing_api/group/post/like.rb, line 5
def self.list(post_id, options = {})
  request(:get, "/v1/groups/forums/posts/#{post_id}/likes", options)
end