2016-11-28 14:36:47 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-25 03:50:48 +02:00
|
|
|
require 'sidekiq/web'
|
2017-05-08 04:52:57 +03:00
|
|
|
require 'sidekiq-scheduler/web'
|
2016-03-25 03:50:48 +02:00
|
|
|
|
2017-07-28 05:36:42 +03:00
|
|
|
Sidekiq::Web.set :session_secret, Rails.application.secrets[:secret_key_base]
|
|
|
|
|
2016-02-20 23:53:20 +02:00
|
|
|
Rails.application.routes.draw do
|
2017-01-21 23:19:13 +02:00
|
|
|
mount LetterOpenerWeb::Engine, at: 'letter_opener' if Rails.env.development?
|
2016-08-18 16:49:51 +03:00
|
|
|
|
2016-03-25 15:12:24 +02:00
|
|
|
authenticate :user, lambda { |u| u.admin? } do
|
2016-12-13 14:42:10 +02:00
|
|
|
mount Sidekiq::Web, at: 'sidekiq', as: :sidekiq
|
|
|
|
mount PgHero::Engine, at: 'pghero', as: :pghero
|
2016-03-25 03:50:48 +02:00
|
|
|
end
|
|
|
|
|
2016-10-22 20:38:47 +03:00
|
|
|
use_doorkeeper do
|
2018-05-19 22:05:08 +03:00
|
|
|
controllers authorizations: 'oauth/authorizations',
|
|
|
|
authorized_applications: 'oauth/authorized_applications',
|
|
|
|
tokens: 'oauth/tokens'
|
2016-10-22 20:38:47 +03:00
|
|
|
end
|
2016-03-07 13:42:33 +02:00
|
|
|
|
2017-04-13 14:09:07 +03:00
|
|
|
get '.well-known/host-meta', to: 'well_known/host_meta#show', as: :host_meta, defaults: { format: 'xml' }
|
2017-04-17 20:58:03 +03:00
|
|
|
get '.well-known/webfinger', to: 'well_known/webfinger#show', as: :webfinger
|
2018-09-29 20:14:48 +03:00
|
|
|
get '.well-known/change-password', to: redirect('/auth/edit')
|
2017-06-06 20:29:42 +03:00
|
|
|
get 'manifest', to: 'manifests#show', defaults: { format: 'json' }
|
2017-08-14 05:53:31 +03:00
|
|
|
get 'intent', to: 'intents#show'
|
2018-08-24 05:33:27 +03:00
|
|
|
get 'custom.css', to: 'custom_css#show', as: :custom_css
|
2016-02-22 17:00:20 +02:00
|
|
|
|
2017-11-27 17:07:59 +02:00
|
|
|
devise_scope :user do
|
|
|
|
get '/invite/:invite_code', to: 'auth/registrations#new', as: :public_invite
|
2018-02-04 06:42:13 +02:00
|
|
|
match '/auth/finish_signup' => 'auth/confirmations#finish_signup', via: [:get, :patch], as: :finish_signup
|
2017-11-27 17:07:59 +02:00
|
|
|
end
|
|
|
|
|
2016-03-05 23:43:05 +02:00
|
|
|
devise_for :users, path: 'auth', controllers: {
|
2018-02-04 06:42:13 +02:00
|
|
|
omniauth_callbacks: 'auth/omniauth_callbacks',
|
2016-03-05 23:43:05 +02:00
|
|
|
sessions: 'auth/sessions',
|
|
|
|
registrations: 'auth/registrations',
|
2016-10-03 17:38:22 +03:00
|
|
|
passwords: 'auth/passwords',
|
2016-11-28 14:36:47 +02:00
|
|
|
confirmations: 'auth/confirmations',
|
2016-03-05 23:43:05 +02:00
|
|
|
}
|
2016-03-05 14:12:24 +02:00
|
|
|
|
2017-07-24 09:46:29 +03:00
|
|
|
get '/users/:username', to: redirect('/@%{username}'), constraints: lambda { |req| req.format.nil? || req.format.html? }
|
2018-09-03 01:10:28 +03:00
|
|
|
get '/authorize_follow', to: redirect { |_, request| "/authorize_interaction?#{request.params.to_query}" }
|
2017-03-22 20:26:22 +02:00
|
|
|
|
2016-02-29 20:42:08 +02:00
|
|
|
resources :accounts, path: 'users', only: [:show], param: :username do
|
2016-12-18 16:20:39 +02:00
|
|
|
resources :stream_entries, path: 'updates', only: [:show] do
|
|
|
|
member do
|
|
|
|
get :embed
|
|
|
|
end
|
|
|
|
end
|
2016-03-19 15:02:30 +02:00
|
|
|
|
2017-01-01 20:52:25 +02:00
|
|
|
get :remote_follow, to: 'remote_follow#new'
|
|
|
|
post :remote_follow, to: 'remote_follow#create'
|
|
|
|
|
2017-07-15 04:01:39 +03:00
|
|
|
resources :statuses, only: [:show] do
|
|
|
|
member do
|
|
|
|
get :activity
|
2017-08-30 11:23:43 +03:00
|
|
|
get :embed
|
2017-07-15 04:01:39 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-19 14:52:37 +03:00
|
|
|
resources :followers, only: [:index], controller: :follower_accounts
|
|
|
|
resources :following, only: [:index], controller: :following_accounts
|
2018-01-08 11:57:52 +02:00
|
|
|
resource :follow, only: [:create], controller: :account_follow
|
2017-04-19 14:52:37 +03:00
|
|
|
resource :unfollow, only: [:create], controller: :account_unfollow
|
2018-03-04 10:19:11 +02:00
|
|
|
|
2017-07-15 04:01:39 +03:00
|
|
|
resource :outbox, only: [:show], module: :activitypub
|
2017-08-08 22:52:15 +03:00
|
|
|
resource :inbox, only: [:create], module: :activitypub
|
2018-03-04 10:19:11 +02:00
|
|
|
resources :collections, only: [:show], module: :activitypub
|
2016-02-29 20:42:08 +02:00
|
|
|
end
|
2016-02-22 17:00:20 +02:00
|
|
|
|
2017-08-31 01:02:59 +03:00
|
|
|
resource :inbox, only: [:create], module: :activitypub
|
|
|
|
|
2017-03-22 20:26:22 +02:00
|
|
|
get '/@:username', to: 'accounts#show', as: :short_account
|
2017-08-16 18:12:58 +03:00
|
|
|
get '/@:username/with_replies', to: 'accounts#show', as: :short_account_with_replies
|
|
|
|
get '/@:username/media', to: 'accounts#show', as: :short_account_media
|
2017-03-22 20:26:22 +02:00
|
|
|
get '/@:account_username/:id', to: 'statuses#show', as: :short_account_status
|
2017-08-30 11:23:43 +03:00
|
|
|
get '/@:account_username/:id/embed', to: 'statuses#embed', as: :embed_short_account_status
|
2017-03-22 20:26:22 +02:00
|
|
|
|
2018-08-18 04:03:12 +03:00
|
|
|
get '/interact/:id', to: 'remote_interaction#new', as: :remote_interaction
|
|
|
|
post '/interact/:id', to: 'remote_interaction#create'
|
|
|
|
|
2018-12-06 18:36:11 +02:00
|
|
|
get '/explore', to: 'directories#index', as: :explore
|
|
|
|
get '/explore/:id', to: 'directories#show', as: :explore_hashtag
|
|
|
|
|
2016-10-14 03:28:49 +03:00
|
|
|
namespace :settings do
|
|
|
|
resource :profile, only: [:show, :update]
|
2017-10-20 23:12:45 +03:00
|
|
|
|
2016-10-14 03:28:49 +03:00
|
|
|
resource :preferences, only: [:show, :update]
|
2017-10-04 11:22:52 +03:00
|
|
|
resource :notifications, only: [:show, :update]
|
2017-03-30 20:42:33 +03:00
|
|
|
resource :import, only: [:show, :create]
|
2017-03-19 21:29:41 +02:00
|
|
|
|
2018-02-22 00:21:32 +02:00
|
|
|
resource :export, only: [:show, :create]
|
2017-04-11 23:00:43 +03:00
|
|
|
namespace :exports, constraints: { format: :csv } do
|
|
|
|
resources :follows, only: :index, controller: :following_accounts
|
|
|
|
resources :blocks, only: :index, controller: :blocked_accounts
|
2017-04-12 19:20:44 +03:00
|
|
|
resources :mutes, only: :index, controller: :muted_accounts
|
2017-03-19 21:29:41 +02:00
|
|
|
end
|
2017-01-27 21:28:46 +02:00
|
|
|
|
2017-04-22 05:23:17 +03:00
|
|
|
resource :two_factor_authentication, only: [:show, :create, :destroy]
|
|
|
|
namespace :two_factor_authentication do
|
|
|
|
resources :recovery_codes, only: [:create]
|
|
|
|
resource :confirmation, only: [:new, :create]
|
2017-01-27 21:28:46 +02:00
|
|
|
end
|
2017-04-24 01:38:37 +03:00
|
|
|
|
|
|
|
resource :follower_domains, only: [:show, :update]
|
2017-08-22 19:33:57 +03:00
|
|
|
|
2017-08-23 01:59:35 +03:00
|
|
|
resources :applications, except: [:edit] do
|
|
|
|
member do
|
|
|
|
post :regenerate
|
|
|
|
end
|
2017-08-22 19:33:57 +03:00
|
|
|
end
|
|
|
|
|
2017-12-11 03:56:17 +02:00
|
|
|
resources :flavours, only: [:index, :show, :update], param: :flavour
|
|
|
|
|
2017-06-14 19:01:27 +03:00
|
|
|
resource :delete, only: [:show, :destroy]
|
2017-11-27 23:47:06 +02:00
|
|
|
resource :migration, only: [:show, :update]
|
2017-07-19 05:59:04 +03:00
|
|
|
|
|
|
|
resources :sessions, only: [:destroy]
|
2016-10-14 03:28:49 +03:00
|
|
|
end
|
|
|
|
|
2018-02-16 08:22:20 +02:00
|
|
|
resources :media, only: [:show] do
|
|
|
|
get :player
|
|
|
|
end
|
|
|
|
|
2017-10-07 18:43:42 +03:00
|
|
|
resources :tags, only: [:show]
|
|
|
|
resources :emojis, only: [:show]
|
2017-11-27 17:07:59 +02:00
|
|
|
resources :invites, only: [:index, :create, :destroy]
|
2018-06-29 16:34:36 +03:00
|
|
|
resources :filters, except: [:show]
|
2016-10-02 17:14:21 +03:00
|
|
|
|
2017-09-16 04:01:45 +03:00
|
|
|
get '/media_proxy/:id/(*any)', to: 'media_proxy#show', as: :media_proxy
|
|
|
|
|
2016-12-29 17:54:54 +02:00
|
|
|
# Remote follow
|
2018-04-08 14:40:22 +03:00
|
|
|
resource :remote_unfollow, only: [:create]
|
2018-08-18 04:03:12 +03:00
|
|
|
resource :authorize_interaction, only: [:show, :create]
|
2017-08-14 05:53:31 +03:00
|
|
|
resource :share, only: [:show, :create]
|
2016-12-29 17:54:54 +02:00
|
|
|
|
2016-11-28 19:45:13 +02:00
|
|
|
namespace :admin do
|
2018-07-16 02:11:53 +03:00
|
|
|
get '/dashboard', to: 'dashboard#index'
|
|
|
|
|
2017-05-31 21:39:35 +03:00
|
|
|
resources :subscriptions, only: [:index]
|
2017-04-16 13:51:30 +03:00
|
|
|
resources :domain_blocks, only: [:index, :new, :create, :show, :destroy]
|
2017-10-04 16:16:10 +03:00
|
|
|
resources :email_domain_blocks, only: [:index, :new, :create, :destroy]
|
2017-11-24 03:05:53 +02:00
|
|
|
resources :action_logs, only: [:index]
|
2017-05-04 19:12:44 +03:00
|
|
|
resource :settings, only: [:edit, :update]
|
2018-08-19 01:58:53 +03:00
|
|
|
|
|
|
|
resources :invites, only: [:index, :create, :destroy] do
|
|
|
|
collection do
|
|
|
|
post :deactivate_all
|
|
|
|
end
|
|
|
|
end
|
2017-08-14 05:53:31 +03:00
|
|
|
|
2018-07-13 03:16:06 +03:00
|
|
|
resources :relays, only: [:index, :new, :create, :destroy] do
|
|
|
|
member do
|
|
|
|
post :enable
|
|
|
|
post :disable
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-21 00:07:13 +03:00
|
|
|
resources :instances, only: [:index] do
|
|
|
|
collection do
|
|
|
|
post :resubscribe
|
|
|
|
end
|
|
|
|
end
|
2017-02-17 01:42:52 +02:00
|
|
|
|
2017-04-14 12:10:28 +03:00
|
|
|
resources :reports, only: [:index, :show, :update] do
|
2018-05-06 00:06:29 +03:00
|
|
|
resources :reported_statuses, only: [:create]
|
2017-02-17 01:42:52 +02:00
|
|
|
end
|
2016-12-06 19:22:59 +02:00
|
|
|
|
2018-04-02 23:04:14 +03:00
|
|
|
resources :report_notes, only: [:create, :destroy]
|
|
|
|
|
2017-02-15 01:22:58 +02:00
|
|
|
resources :accounts, only: [:index, :show] do
|
2017-06-08 15:58:22 +03:00
|
|
|
member do
|
|
|
|
post :subscribe
|
|
|
|
post :unsubscribe
|
2017-11-07 20:06:44 +02:00
|
|
|
post :enable
|
|
|
|
post :disable
|
2017-06-08 15:58:22 +03:00
|
|
|
post :redownload
|
2018-04-02 14:45:07 +03:00
|
|
|
post :remove_avatar
|
2018-12-11 20:28:03 +02:00
|
|
|
post :remove_header
|
2017-11-07 20:06:44 +02:00
|
|
|
post :memorialize
|
2017-06-08 15:58:22 +03:00
|
|
|
end
|
|
|
|
|
2018-04-10 10:16:06 +03:00
|
|
|
resource :change_email, only: [:show, :update]
|
2017-04-15 17:44:59 +03:00
|
|
|
resource :reset, only: [:create]
|
2017-04-13 14:04:23 +03:00
|
|
|
resource :silence, only: [:create, :destroy]
|
2018-08-22 12:53:41 +03:00
|
|
|
resource :suspension, only: [:new, :create, :destroy]
|
2018-08-31 13:24:01 +03:00
|
|
|
resources :statuses, only: [:index, :show, :create, :update, :destroy]
|
2017-11-11 21:23:33 +02:00
|
|
|
|
2018-05-06 11:59:03 +03:00
|
|
|
resource :confirmation, only: [:create] do
|
|
|
|
collection do
|
|
|
|
post :resend
|
|
|
|
end
|
|
|
|
end
|
2017-11-11 21:23:33 +02:00
|
|
|
|
|
|
|
resource :role do
|
|
|
|
member do
|
|
|
|
post :promote
|
|
|
|
post :demote
|
|
|
|
end
|
|
|
|
end
|
2016-12-06 19:22:59 +02:00
|
|
|
end
|
2017-05-02 22:07:12 +03:00
|
|
|
|
|
|
|
resources :users, only: [] do
|
|
|
|
resource :two_factor_authentication, only: [:destroy]
|
|
|
|
end
|
2017-09-19 04:52:38 +03:00
|
|
|
|
2017-10-27 17:11:30 +03:00
|
|
|
resources :custom_emojis, only: [:index, :new, :create, :update, :destroy] do
|
2017-10-06 00:42:05 +03:00
|
|
|
member do
|
|
|
|
post :copy
|
|
|
|
post :enable
|
|
|
|
post :disable
|
|
|
|
end
|
|
|
|
end
|
2017-10-07 21:26:43 +03:00
|
|
|
|
|
|
|
resources :account_moderation_notes, only: [:create, :destroy]
|
2018-12-06 18:36:11 +02:00
|
|
|
|
|
|
|
resources :tags, only: [:index] do
|
|
|
|
member do
|
|
|
|
post :hide
|
|
|
|
post :unhide
|
|
|
|
end
|
|
|
|
end
|
2016-11-28 19:45:13 +02:00
|
|
|
end
|
|
|
|
|
2018-07-16 02:11:53 +03:00
|
|
|
get '/admin', to: redirect('/admin/dashboard', status: 302)
|
2017-01-26 09:59:35 +02:00
|
|
|
|
2016-02-29 20:42:08 +02:00
|
|
|
namespace :api do
|
2016-11-28 14:36:47 +02:00
|
|
|
# PubSubHubbub outgoing subscriptions
|
2016-02-29 20:42:08 +02:00
|
|
|
resources :subscriptions, only: [:show]
|
|
|
|
post '/subscriptions/:id', to: 'subscriptions#update'
|
2016-03-07 13:42:33 +02:00
|
|
|
|
2016-11-28 14:36:47 +02:00
|
|
|
# PubSubHubbub incoming subscriptions
|
|
|
|
post '/push', to: 'push#update', as: :push
|
|
|
|
|
2016-03-07 13:42:33 +02:00
|
|
|
# Salmon
|
2016-02-29 20:42:08 +02:00
|
|
|
post '/salmon/:id', to: 'salmon#update', as: :salmon
|
2016-03-07 13:42:33 +02:00
|
|
|
|
2016-12-01 00:01:03 +02:00
|
|
|
# OEmbed
|
|
|
|
get '/oembed', to: 'oembed#show', as: :oembed
|
|
|
|
|
2016-03-07 13:42:33 +02:00
|
|
|
# JSON / REST API
|
2016-09-27 17:58:23 +03:00
|
|
|
namespace :v1 do
|
|
|
|
resources :statuses, only: [:create, :show, :destroy] do
|
2017-06-09 21:12:40 +03:00
|
|
|
scope module: :statuses do
|
2017-06-10 10:39:26 +03:00
|
|
|
resources :reblogged_by, controller: :reblogged_by_accounts, only: :index
|
|
|
|
resources :favourited_by, controller: :favourited_by_accounts, only: :index
|
|
|
|
resource :reblog, only: :create
|
|
|
|
post :unreblog, to: 'reblogs#destroy'
|
|
|
|
|
|
|
|
resource :favourite, only: :create
|
|
|
|
post :unfavourite, to: 'favourites#destroy'
|
|
|
|
|
2018-04-10 23:13:15 +03:00
|
|
|
resource :bookmark, only: :create
|
|
|
|
post :unbookmark, to: 'bookmarks#destroy'
|
|
|
|
|
2017-06-10 10:39:26 +03:00
|
|
|
resource :mute, only: :create
|
|
|
|
post :unmute, to: 'mutes#destroy'
|
2017-08-25 02:41:18 +03:00
|
|
|
|
|
|
|
resource :pin, only: :create
|
|
|
|
post :unpin, to: 'pins#destroy'
|
2017-06-09 21:12:40 +03:00
|
|
|
end
|
|
|
|
|
2016-09-27 17:58:23 +03:00
|
|
|
member do
|
|
|
|
get :context
|
2017-01-20 02:00:14 +02:00
|
|
|
get :card
|
2016-09-27 17:58:23 +03:00
|
|
|
end
|
2016-03-07 14:25:26 +02:00
|
|
|
end
|
|
|
|
|
2017-05-23 19:11:39 +03:00
|
|
|
namespace :timelines do
|
2017-10-16 07:02:39 +03:00
|
|
|
resource :direct, only: :show, controller: :direct
|
2017-05-23 19:11:39 +03:00
|
|
|
resource :home, only: :show, controller: :home
|
|
|
|
resource :public, only: :show, controller: :public
|
|
|
|
resources :tag, only: :show
|
2017-11-18 01:16:48 +02:00
|
|
|
resources :list, only: :show
|
2017-05-23 19:11:39 +03:00
|
|
|
end
|
2017-08-25 02:41:18 +03:00
|
|
|
|
|
|
|
resources :streaming, only: [:index]
|
2017-09-23 02:57:23 +03:00
|
|
|
resources :custom_emojis, only: [:index]
|
2018-07-07 22:09:54 +03:00
|
|
|
resources :suggestions, only: [:index, :destroy]
|
2018-10-19 02:47:29 +03:00
|
|
|
|
|
|
|
resources :conversations, only: [:index, :destroy] do
|
|
|
|
member do
|
|
|
|
post :read
|
|
|
|
end
|
|
|
|
end
|
2016-11-09 00:22:44 +02:00
|
|
|
|
2017-03-22 03:32:27 +02:00
|
|
|
get '/search', to: 'search#index', as: :search
|
|
|
|
|
2018-08-20 19:46:04 +03:00
|
|
|
resources :follows, only: [:create]
|
|
|
|
resources :media, only: [:create, :update]
|
|
|
|
resources :blocks, only: [:index]
|
2018-08-21 19:24:48 +03:00
|
|
|
resources :mutes, only: [:index] do
|
2017-12-11 03:56:17 +02:00
|
|
|
collection do
|
2017-09-02 20:24:58 +03:00
|
|
|
get 'details'
|
|
|
|
end
|
|
|
|
end
|
2018-08-20 19:46:04 +03:00
|
|
|
resources :favourites, only: [:index]
|
2018-08-21 19:24:48 +03:00
|
|
|
resources :bookmarks, only: [:index]
|
2018-09-28 03:23:45 +03:00
|
|
|
resources :reports, only: [:create]
|
2018-08-20 19:46:04 +03:00
|
|
|
resources :filters, only: [:index, :create, :show, :update, :destroy]
|
|
|
|
resources :endorsements, only: [:index]
|
2017-03-16 00:12:48 +02:00
|
|
|
|
2017-09-30 23:05:42 +03:00
|
|
|
namespace :apps do
|
|
|
|
get :verify_credentials, to: 'credentials#show'
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :apps, only: [:create]
|
|
|
|
|
2017-12-29 20:52:04 +02:00
|
|
|
resource :instance, only: [:show] do
|
|
|
|
resources :peers, only: [:index], controller: 'instances/peers'
|
|
|
|
resource :activity, only: [:show], controller: 'instances/activity'
|
|
|
|
end
|
|
|
|
|
Account domain blocks (#2381)
* Add <ostatus:conversation /> tag to Atom input/output
Only uses ref attribute (not href) because href would be
the alternate link that's always included also.
Creates new conversation for every non-reply status. Carries
over conversation for every reply. Keeps remote URIs verbatim,
generates local URIs on the fly like the rest of them.
* Conversation muting - prevents notifications that reference a conversation
(including replies, favourites, reblogs) from being created. API endpoints
/api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute
Currently no way to tell when a status/conversation is muted, so the web UI
only has a "disable notifications" button, doesn't work as a toggle
* Display "Dismiss notifications" on all statuses in notifications column, not just own
* Add "muted" as a boolean attribute on statuses JSON
For now always false on contained reblogs, since it's only relevant for
statuses returned from the notifications endpoint, which are not nested
Remove "Disable notifications" from detailed status view, since it's
only relevant in the notifications column
* Up max class length
* Remove pending test for conversation mute
* Add tests, clean up
* Rename to "mute conversation" and "unmute conversation"
* Raise validation error when trying to mute/unmute status without conversation
* Adding account domain blocks that filter notifications and public timelines
* Add tests for domain blocks in notifications, public timelines
Filter reblogs of blocked domains from home
* Add API for listing and creating account domain blocks
* API for creating/deleting domain blocks, tests for Status#ancestors
and Status#descendants, filter domain blocks from them
* Filter domains in streaming API
* Update account_domain_block_spec.rb
2017-05-19 02:14:30 +03:00
|
|
|
resource :domain_blocks, only: [:show, :create, :destroy]
|
2016-10-02 17:14:21 +03:00
|
|
|
|
2016-12-26 20:30:45 +02:00
|
|
|
resources :follow_requests, only: [:index] do
|
|
|
|
member do
|
|
|
|
post :authorize
|
|
|
|
post :reject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-14 18:03:43 +03:00
|
|
|
resources :notifications, only: [:index, :show, :destroy] do
|
2017-01-23 22:09:27 +02:00
|
|
|
collection do
|
|
|
|
post :clear
|
2018-10-07 19:26:26 +03:00
|
|
|
post :dismiss # Deprecated
|
2018-10-15 22:09:12 +03:00
|
|
|
delete :destroy_multiple
|
2018-10-07 19:26:26 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
member do
|
2017-04-22 03:30:35 +03:00
|
|
|
post :dismiss
|
2017-01-23 22:09:27 +02:00
|
|
|
end
|
|
|
|
end
|
2016-11-20 01:33:02 +02:00
|
|
|
|
2017-05-31 22:36:24 +03:00
|
|
|
namespace :accounts do
|
|
|
|
get :verify_credentials, to: 'credentials#show'
|
|
|
|
patch :update_credentials, to: 'credentials#update'
|
|
|
|
resource :search, only: :show, controller: :search
|
|
|
|
resources :relationships, only: :index
|
|
|
|
end
|
2017-08-25 02:41:18 +03:00
|
|
|
|
2016-09-27 17:58:23 +03:00
|
|
|
resources :accounts, only: [:show] do
|
2017-05-31 22:36:24 +03:00
|
|
|
resources :statuses, only: :index, controller: 'accounts/statuses'
|
|
|
|
resources :followers, only: :index, controller: 'accounts/follower_accounts'
|
|
|
|
resources :following, only: :index, controller: 'accounts/following_accounts'
|
2017-12-12 04:55:39 +02:00
|
|
|
resources :lists, only: :index, controller: 'accounts/lists'
|
2016-09-27 17:58:23 +03:00
|
|
|
|
|
|
|
member do
|
|
|
|
post :follow
|
|
|
|
post :unfollow
|
2016-10-03 19:17:06 +03:00
|
|
|
post :block
|
|
|
|
post :unblock
|
2017-02-06 03:51:56 +02:00
|
|
|
post :mute
|
|
|
|
post :unmute
|
2016-09-27 17:58:23 +03:00
|
|
|
end
|
2018-08-09 10:56:53 +03:00
|
|
|
|
|
|
|
resource :pin, only: :create, controller: 'accounts/pins'
|
|
|
|
post :unpin, to: 'accounts/pins#destroy'
|
2016-03-07 13:42:33 +02:00
|
|
|
end
|
2017-11-18 01:16:48 +02:00
|
|
|
|
|
|
|
resources :lists, only: [:index, :create, :show, :update, :destroy] do
|
|
|
|
resource :accounts, only: [:show, :create, :destroy], controller: 'lists/accounts'
|
|
|
|
end
|
2018-05-11 12:49:12 +03:00
|
|
|
|
|
|
|
namespace :push do
|
2018-05-13 22:07:31 +03:00
|
|
|
resource :subscription, only: [:create, :show, :update, :destroy]
|
2018-05-11 12:49:12 +03:00
|
|
|
end
|
2016-03-07 13:42:33 +02:00
|
|
|
end
|
2017-01-09 15:00:55 +02:00
|
|
|
|
2018-05-29 03:01:24 +03:00
|
|
|
namespace :v2 do
|
|
|
|
get '/search', to: 'search#index', as: :search
|
|
|
|
end
|
|
|
|
|
2017-01-09 15:00:55 +02:00
|
|
|
namespace :web do
|
|
|
|
resource :settings, only: [:update]
|
2017-08-31 04:38:35 +03:00
|
|
|
resource :embed, only: [:create]
|
2017-07-13 23:15:32 +03:00
|
|
|
resources :push_subscriptions, only: [:create] do
|
|
|
|
member do
|
|
|
|
put :update
|
|
|
|
end
|
|
|
|
end
|
2017-01-09 15:00:55 +02:00
|
|
|
end
|
2016-02-29 20:42:08 +02:00
|
|
|
end
|
2016-02-22 17:00:20 +02:00
|
|
|
|
2017-01-04 16:35:36 +02:00
|
|
|
get '/web/(*any)', to: 'home#index', as: :web
|
2016-11-13 15:01:21 +02:00
|
|
|
|
2017-04-09 15:47:25 +03:00
|
|
|
get '/about', to: 'about#show'
|
2017-01-13 04:24:41 +02:00
|
|
|
get '/about/more', to: 'about#more'
|
|
|
|
get '/terms', to: 'about#terms'
|
2017-01-20 02:00:14 +02:00
|
|
|
|
2016-02-22 17:00:20 +02:00
|
|
|
root 'home#index'
|
2016-09-08 03:40:51 +03:00
|
|
|
|
2017-04-09 15:39:41 +03:00
|
|
|
match '*unmatched_route',
|
2017-08-25 02:41:18 +03:00
|
|
|
via: :all,
|
|
|
|
to: 'application#raise_not_found',
|
|
|
|
format: false
|
2016-02-20 23:53:20 +02:00
|
|
|
end
|