Sha256: c2c813ef1eefe4552795c32dfe0fe5b24de1de061d40421d86b1730de76e68a5

Contents?: true

Size: 735 Bytes

Versions: 3

Compression:

Stored size: 735 Bytes

Contents

module Yammer
  module Api
    module Network

      # @see https://developer.yammer.com/restapi/#rest-network
      # @api_path /api/v1//networks/current
      # @rate_limited Yes
      # @authentication authenticated user context
      # @raise  [Yammer::Error::Unauthorized] Error raised when supplied user credentials are not valid.
      # @return [Yammer::Response]
      # @param [Hash] opts the options to fetch a thread with
      # @option opts [Boolean] :include_suspended
      # @option opts [Boolean] :exclude_own_messages_from_unseen
      # @example Fetch data for the thread
      #   Yammer.current_networks
      def current_networks(opts={})
        get('/api/v1/networks/current', opts)
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
yammer-client-0.1.2 lib/yammer/api/network.rb
yammer-client-0.1.1 lib/yammer/api/network.rb
yammer-client-0.1.0 lib/yammer/api/network.rb