Sha256: 086c174a8d3724fe2af9995a1a48b0dc6142b1aa29bd1db774378218189c5949

Contents?: true

Size: 346 Bytes

Versions: 6

Compression:

Stored size: 346 Bytes

Contents

# Routes
Rails.application.routes.draw do
  # Phone Numbers
  resources :phone_numbers

  # Vcards
  resources :vcards do
    resources :phone_numbers

    # DirectoryLookup
    member do
      get :directory_lookup
      post :directory_update
    end
  end

  # Directory Lookup
  get 'directory_lookup/search' => 'directory_lookup#search'
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
has_vcards-0.20.3 config/routes.rb
has_vcards-0.20.2 config/routes.rb
has_vcards-0.20.1 config/routes.rb
has_vcards-0.20.0 config/routes.rb
has_vcards-0.19.0 config/routes.rb
has_vcards-0.18.0 config/routes.rb