Sha256: 7df140a98b8531581d1ef1f229a1caef8f6bd160d6c10388bb7b2fb793295ca4

Contents?: true

Size: 433 Bytes

Versions: 1

Compression:

Stored size: 433 Bytes

Contents

Rails.application.routes.draw do

  match 'oauth/new'           => 'oauth/auth#new',          :as => 'oauth_new'
  match '/oauth/authorize'    => 'oauth/auth#authorize',    :as => 'oauth_authorize'
  match '/oauth/access_token' => 'oauth/auth#access_token', :as => 'oauth_token'

  resources :oauth_docs,                :controller => 'oauth/docs'
  resources :oauth_client_applications, :controller => 'oauth/client_application'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
opro-0.0.1.pre config/routes.rb