Merge commit 'a324edabdf' into upstream-20250416

This commit is contained in:
KMY 2025-04-24 07:27:26 +09:00
commit 94eb912030
71 changed files with 513 additions and 141 deletions

View file

@ -7,10 +7,6 @@ class Api::V1::ListsController < Api::BaseController
before_action :require_user!
before_action :set_list, except: [:index, :create]
rescue_from ArgumentError do |e|
render json: { error: e.to_s }, status: 422
end
def index
@lists = List.where(account: current_account).all
render json: @lists, each_serializer: REST::ListSerializer