about summary refs log tree commit diff
path: root/app/controllers/api/v1/accounts
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-12-12 03:55:39 +0100
committerGitHub <noreply@github.com>2017-12-12 03:55:39 +0100
commit1356ed72cd4f595e93a5fa23fd8d7459fc8f81b3 (patch)
tree3fef338a1a6cdd3992b64215f36d3c8186635b34 /app/controllers/api/v1/accounts
parent481fac7c8401a47af52043cd4db05b6dd984d8a9 (diff)
Fix #5953 - Add GET /api/v1/accounts/:id/lists (#5983)
Diffstat (limited to 'app/controllers/api/v1/accounts')
-rw-r--r--app/controllers/api/v1/accounts/lists_controller.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/controllers/api/v1/accounts/lists_controller.rb b/app/controllers/api/v1/accounts/lists_controller.rb
new file mode 100644
index 000000000..a7ba89ce2
--- /dev/null
+++ b/app/controllers/api/v1/accounts/lists_controller.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+
+class Api::V1::Accounts::ListsController < Api::BaseController
+  before_action -> { doorkeeper_authorize! :read }
+  before_action :require_user!
+  before_action :set_account
+
+  respond_to :json
+
+  def index
+    @lists = @account.lists.where(account: current_account)
+    render json: @lists, each_serializer: REST::ListSerializer
+  end
+
+  private
+
+  def set_account
+    @account = Account.find(params[:account_id])
+  end
+end