diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-03-22 02:32:27 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-03-22 02:32:27 +0100 |
commit | 05cf086766396745219582951f9b792ac5ed2bfb (patch) | |
tree | 8ea8471b0565847f41fca533d0e100b181593fa0 /config | |
parent | 98571b0ce4b63c5ce4198681fa4e3800938f4c9e (diff) |
New API method: /api/v1/search
Returns accounts, statuses, hashtags arrays
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index ea766e1b3..b3f623c04 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -129,6 +129,8 @@ Rails.application.routes.draw do get '/timelines/public', to: 'timelines#public', as: :public_timeline get '/timelines/tag/:id', to: 'timelines#tag', as: :hashtag_timeline + get '/search', to: 'search#index', as: :search + resources :follows, only: [:create] resources :media, only: [:create] resources :apps, only: [:create] |