class Rallio::Base

Public Class Methods

app_credentials() click to toggle source

The credentials that can be used in the headers of any request requiring app level credentials

@return [Hash] credentials hash

# File lib/rallio/base.rb, line 12
def self.app_credentials
  {
    'X-Application-ID' => Rallio.application_id,
    'X-Application-Secret' => Rallio.application_secret
  }
end