Sha256: 375b371c8a842e5c3faad2b3f33310bbab9f4f8ee9d2dd40136f59bf5623d7a1

Contents?: true

Size: 548 Bytes

Versions: 7

Compression:

Stored size: 548 Bytes

Contents

PandaPal::Engine.routes.draw do
  get '/config' => 'lti_v1_p0#tool_config' # Legacy Support

  get "/call_logic" => "api_call#call"
  post "/call_logic" => "api_call#call"

  scope '/v1p0', as: 'v1p0' do
    get '/config' => 'lti_v1_p0#tool_config'
    post '/launch' => 'lti_v1_p0#launch'
  end

  scope '/v1p3', as: 'v1p3' do
    get '/config' => 'lti_v1_p3#tool_config'
    post '/oidc_login' => 'lti_v1_p3#login'
    post '/resource_link_request' => 'lti_v1_p3#resource_link_request'
    get '/public_jwks' => 'lti_v1_p3#public_jwks'
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
panda_pal-5.6.6 config/routes.rb
panda_pal-5.6.5 config/routes.rb
panda_pal-5.6.4 config/routes.rb
panda_pal-5.6.3 config/routes.rb
panda_pal-5.6.2 config/routes.rb
panda_pal-5.6.1 config/routes.rb
panda_pal-5.6.0 config/routes.rb