Sha256: 37c375efd403982cdc02900b9537deabcdfb9c7c144dc8169256597d91cb92ed

Contents?: true

Size: 768 Bytes

Versions: 4

Compression:

Stored size: 768 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 all networks that the current user is a member of
      #   Yammer.current_networks
      def current_networks(opts={})
        get('/api/v1/networks/current', opts)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
yammer-client-0.1.8 lib/yammer/api/network.rb
yammer-client-0.1.7 lib/yammer/api/network.rb
yammer-client-0.1.6 lib/yammer/api/network.rb
yammer-client-0.1.5 lib/yammer/api/network.rb