mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 09:11:11 +01:00
43 lines
1,001 B
Ruby
43 lines
1,001 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::V1::ListsController < Api::BaseController
|
|
before_action -> { doorkeeper_authorize! :read }, only: [:index, :show]
|
|
before_action -> { doorkeeper_authorize! :write }, except: [:index, :show]
|
|
|
|
before_action :require_user!
|
|
before_action :set_list, except: [:index, :create]
|
|
|
|
def index
|
|
@lists = List.where(account: current_account).all
|
|
render json: @lists, each_serializer: REST::ListSerializer
|
|
end
|
|
|
|
def show
|
|
render json: @list, serializer: REST::ListSerializer
|
|
end
|
|
|
|
def create
|
|
@list = List.create!(list_params.merge(account: current_account))
|
|
render json: @list, serializer: REST::ListSerializer
|
|
end
|
|
|
|
def update
|
|
@list.update!(list_params)
|
|
render json: @list, serializer: REST::ListSerializer
|
|
end
|
|
|
|
def destroy
|
|
@list.destroy!
|
|
render_empty
|
|
end
|
|
|
|
private
|
|
|
|
def set_list
|
|
@list = List.where(account: current_account).find(params[:id])
|
|
end
|
|
|
|
def list_params
|
|
params.permit(:title)
|
|
end
|
|
end
|