module Keratin

Public Class Methods

authn() click to toggle source

Client for AuthN API calls

# File lib/keratin/authn.rb, line 13
def self.authn
  @authn ||= AuthN::API.new(
    AuthN.config.authn_url,
    username: AuthN.config.username,
    password: AuthN.config.password
  )
end