class Canvas::Workflow::Client

Public Class Methods

new(config) click to toggle source
Calls superclass method
# File lib/canvas/workflow/client.rb, line 6
def initialize(config)
  token  = ENV['CANVAS_API_TOKEN']
  prefix = config['prefix'] + '/api'
  super(prefix: prefix, token: token)
end