AO3-4359 Revert mass import bookmarks #2498
+413
−744
config/routes.rb
| + # resources :comments | ||
| + # resources :sales do | ||
| + # get 'recent', :on => :collection | ||
| + # end | ||
| + # end | ||
| + | ||
| + # Sample resource route within a namespace: | ||
| + # namespace :admin do | ||
| + # # Directs /admin/products/* to Admin::ProductsController | ||
| + # # (app/controllers/admin/products_controller.rb) | ||
| + # resources :products | ||
| + # end | ||
| + | ||
| + # You can have the root of your site routed with "root" | ||
| + # just remember to delete public/index.html. | ||
| + root :to => "home#index" |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| @@ -542,16 +538,16 @@ | ||
| resources :external_authors do | ||
| resources :external_author_names | ||
| end | ||
| - resources :orphans, only: [:index, :new, :create] do | ||
| + resources :orphans, :only => [:index, :new, :create] do |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| @@ -532,7 +528,7 @@ | ||
| end | ||
| end | ||
| - resource :redirect, controller: "redirect", only: [:show] do | ||
| + resource :redirect, :controller => "redirect", :only => [:show] do |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| @@ -513,7 +509,7 @@ | ||
| end | ||
| end | ||
| resources :known_issues | ||
| - resources :archive_faqs, path: "faq" do | ||
| + resources :archive_faqs, :path => "faq" do |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| @@ -501,7 +497,7 @@ | ||
| resources :collection_items | ||
| end | ||
| - resources :kudos, only: [:create] | ||
| + resources :kudos, :only => [:create] |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| @@ -446,7 +446,7 @@ | ||
| #### SESSIONS #### | ||
| - resources :user_sessions, only: [:new, :create, :destroy] do | ||
| + resources :user_sessions, :only => [:new, :create, :destroy] do |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| # challenge types | ||
| - resource :gift_exchange, controller: 'challenge/gift_exchange' | ||
| - resource :prompt_meme, controller: 'challenge/prompt_meme' | ||
| + resource :gift_exchange, :controller => 'challenge/gift_exchange' | ||
| + resource :prompt_meme, :controller => 'challenge/prompt_meme' |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| # challenge types | ||
| - resource :gift_exchange, controller: 'challenge/gift_exchange' | ||
| - resource :prompt_meme, controller: 'challenge/prompt_meme' | ||
| + resource :gift_exchange, :controller => 'challenge/gift_exchange' |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| @@ -365,7 +365,7 @@ | ||
| member do | ||
| get :confirm_delete | ||
| end | ||
| - resource :profile, controller: "collection_profile" | ||
| + resource :profile, :controller => "collection_profile" |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| @@ -411,7 +411,7 @@ | ||
| get :uncover_default | ||
| end | ||
| end | ||
| - resources :claims, controller: "challenge_claims" do | ||
| + resources :claims, :controller => "challenge_claims" do |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| collection do | ||
| get :summary | ||
| end | ||
| member do | ||
| get :confirm_delete | ||
| end | ||
| end | ||
| - resources :assignments, controller: "challenge_assignments", except: [:new, :edit, :update] do | ||
| + resources :assignments, :controller => "challenge_assignments", :except => [:new, :edit, :update] do |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| collection do | ||
| put :update_multiple | ||
| end | ||
| end | ||
| - resources :signups, controller: "challenge_signups" do | ||
| + resources :signups, :controller => "challenge_signups" do |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| collection do | ||
| get :add | ||
| get :join | ||
| end | ||
| end | ||
| - resources :items, controller: "collection_items" do | ||
| + resources :items, :controller => "collection_items" do |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| @@ -377,26 +377,26 @@ | ||
| resources :tags do | ||
| resources :works | ||
| end | ||
| - resources :participants, controller: "collection_participants" do | ||
| + resources :participants, :controller => "collection_participants" do |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| @@ -424,10 +424,10 @@ | ||
| get :regenerate_for_signup | ||
| end | ||
| end | ||
| - resources :requests, controller: "challenge_requests" | ||
| + resources :requests, :controller => "challenge_requests" |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
config/routes.rb
| @@ -314,8 +314,8 @@ | ||
| put :review_all | ||
| end | ||
| end | ||
| - resources :kudos, only: [:index] | ||
| - resources :links, controller: "work_links", only: [:index] | ||
| + resources :kudos, :only => [:index] | ||
| + resources :links, :controller => "work_links", :only => [:index] |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://otwarchive.atlassian.net/browse/AO3-4359
Reverts otwcode/otwarchive#2442 until we can figure out what's up