Removed "remote" routes

• Removed:
- "remote" routes
This commit is contained in:
mgabdev 2020-06-15 16:45:04 -04:00
parent c2348ededf
commit 101cd19dce
1 changed files with 5 additions and 5 deletions

View File

@ -57,8 +57,8 @@ Rails.application.routes.draw do
end end
end end
get :remote_follow, to: 'remote_follow#new' # get :remote_follow, to: 'remote_follow#new'
post :remote_follow, to: 'remote_follow#create' # post :remote_follow, to: 'remote_follow#create'
resources :statuses, only: [:show] do resources :statuses, only: [:show] do
member do member do
@ -149,9 +149,9 @@ Rails.application.routes.draw do
get '/media_proxy/:id/(*any)', to: 'media_proxy#show', as: :media_proxy get '/media_proxy/:id/(*any)', to: 'media_proxy#show', as: :media_proxy
# Remote follow # Remote follow
resource :remote_unfollow, only: [:create] # resource :remote_unfollow, only: [:create]
resource :authorize_interaction, only: [:show, :create] # resource :authorize_interaction, only: [:show, :create]
resource :share, only: [:show, :create] # resource :share, only: [:show, :create]
namespace :admin do namespace :admin do
get '/dashboard', to: 'dashboard#index' get '/dashboard', to: 'dashboard#index'