# frozen_string_literal: true class Api::V1::BookmarkCollectionsController < Api::BaseController before_action :require_user! before_action :set_bookmark_collections, only: :index before_action :set_bookmark_collection, only: [:show, :update, :destroy] def index render json: @bookmark_collections, each_serializer: REST::BookmarkCollectionSerializer end def create @bookmark_collection = "" #current_account.custom_filters.create!(resource_params) render json: @bookmark_collection, serializer: REST::BookmarkCollectionSerializer end def show render json: @bookmark_collection, serializer: REST::BookmarkCollectionSerializer end def update @bookmark_collection.update!(resource_params) render json: @bookmark_collection, serializer: REST::BookmarkCollectionSerializer end def destroy @bookmark_collection.destroy! render_empty_success end private def set_bookmark_collections @bookmark_collections = "" #current_account.custom_filters end def set_bookmark_collection @bookmark_collection = "" # current_account.custom_filters.find(params[:id]) end def resource_params params.permit(:title) end end