Sha256: 128c07c10a260ce2b8c714164623c2204bf67f309fa486ee3aa83def9c116aa3
Contents?: true
Size: 1.32 KB
Versions: 3
Compression:
Stored size: 1.32 KB
Contents
# frozen_string_literal: true Rails.application.routes.draw do root 'application#root' # Automatic Authentication get 'automatic_authentication/oauth' => 'automatic_authentication#o_auth' get 'automatic_authentication/oauth_with_multiple_providers' => 'automatic_authentication#o_auth_with_multiple_providers' get 'automatic_authentication/oauth_with_provider' => 'automatic_authentication#o_auth_with_provider' get 'automatic_authentication/oauth_with_provider_override' => 'automatic_authentication#o_auth_with_provider_override' # Request Cycle Cache get 'request_cycle_cache/simple' => 'request_cycle_cache#simple' get 'request_cycle_cache/no_caching_interceptor' => 'request_cycle_cache#no_caching_interceptor' get 'request_cycle_cache/parallel' => 'request_cycle_cache#parallel' get 'request_cycle_cache/different_headers' => 'request_cycle_cache#different_headers' # Error handling with chains get 'error_handling_with_chains/fetch_in_controller' => 'error_handling_with_chains#fetch_in_controller' get 'error_handling_with_chains/fetch_in_view' => 'error_handling_with_chains#fetch_in_view' # Option Blocks get 'option_blocks/first' => 'option_blocks#first' get 'option_blocks/second' => 'option_blocks#second' # Extended Rollbar get 'extended_rollbar' => 'extended_rollbar#extended_rollbar' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
lhs-26.2.0 | spec/dummy/config/routes.rb |
lhs-26.1.0 | spec/dummy/config/routes.rb |
lhs-26.0.1 | spec/dummy/config/routes.rb |