diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-12-12 03:55:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-12 03:55:39 +0100 |
commit | 1356ed72cd4f595e93a5fa23fd8d7459fc8f81b3 (patch) | |
tree | 3fef338a1a6cdd3992b64215f36d3c8186635b34 /config | |
parent | 481fac7c8401a47af52043cd4db05b6dd984d8a9 (diff) |
Fix #5953 - Add GET /api/v1/accounts/:id/lists (#5983)
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 6313a355d..467849c03 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -269,6 +269,7 @@ Rails.application.routes.draw do resources :statuses, only: :index, controller: 'accounts/statuses' resources :followers, only: :index, controller: 'accounts/follower_accounts' resources :following, only: :index, controller: 'accounts/following_accounts' + resources :lists, only: :index, controller: 'accounts/lists' member do post :follow |