Sha256: ae374240a89f9b9c3dc0f44124d42e7d4ff926a31b37cbec6180034d57772e6d
Contents?: true
Size: 312 Bytes
Versions: 31
Compression:
Stored size: 312 Bytes
Contents
module OAuth2 module Strategy class Base def initialize(client) @client = client end # The OAuth client_id and client_secret # # @return [Hash] def client_params {'client_id' => @client.id, 'client_secret' => @client.secret} end end end end
Version data entries
31 entries across 31 versions & 7 rubygems