Sha256: e9939afa4c0a1726a7a7cf37c466385ab56d43d00193b45c1237fb2ed91c153d

Contents?: true

Size: 738 Bytes

Versions: 2

Compression:

Stored size: 738 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::ApiResponse]
      # @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

2 entries across 2 versions & 1 rubygems

Version Path
yammer-client-0.1.4 lib/yammer/api/network.rb
yammer-client-0.1.3 lib/yammer/api/network.rb