AO3-4359 Revert mass import bookmarks #2498

Merged
merged 1 commit into from Jul 24, 2016

1 participant

@sarken
Organization for Transformative Works member
@sarken sarken Revert "AO3-4359 Mass import bookmarks"
2051189
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
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"

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
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

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
config/routes.rb
@@ -532,7 +528,7 @@
end
end
- resource :redirect, controller: "redirect", only: [:show] do
+ resource :redirect, :controller => "redirect", :only => [:show] do

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
config/routes.rb
@@ -513,7 +509,7 @@
end
end
resources :known_issues
- resources :archive_faqs, path: "faq" do
+ resources :archive_faqs, :path => "faq" do

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
config/routes.rb
@@ -501,7 +497,7 @@
resources :collection_items
end
- resources :kudos, only: [:create]
+ resources :kudos, :only => [:create]

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
config/routes.rb
@@ -446,7 +446,7 @@
#### SESSIONS ####
- resources :user_sessions, only: [:new, :create, :destroy] do
+ resources :user_sessions, :only => [:new, :create, :destroy] do

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
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'

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
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'

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
config/routes.rb
@@ -365,7 +365,7 @@
member do
get :confirm_delete
end
- resource :profile, controller: "collection_profile"
+ resource :profile, :controller => "collection_profile"

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
config/routes.rb
@@ -411,7 +411,7 @@
get :uncover_default
end
end
- resources :claims, controller: "challenge_claims" do
+ resources :claims, :controller => "challenge_claims" do

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
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

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
config/routes.rb
collection do
put :update_multiple
end
end
- resources :signups, controller: "challenge_signups" do
+ resources :signups, :controller => "challenge_signups" do

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
config/routes.rb
collection do
get :add
get :join
end
end
- resources :items, controller: "collection_items" do
+ resources :items, :controller => "collection_items" do

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
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

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
config/routes.rb
@@ -424,10 +424,10 @@
get :regenerate_for_signup
end
end
- resources :requests, controller: "challenge_requests"
+ resources :requests, :controller => "challenge_requests"

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@houndci-bot houndci-bot commented on the diff Jul 24, 2016
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]

Use the new Ruby 1.9 hash syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
@sarken sarken merged commit 52bd735 into master Jul 24, 2016

4 checks passed

Details continuous-integration/codeship Build succeeded
Details continuous-integration/travis-ci/pr The Travis CI build passed
Details continuous-integration/travis-ci/push The Travis CI build passed
hound 58 violations found.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment