accounts approved, video player testing, bookmark collections
This commit is contained in:
mgabdev
2020-12-17 01:34:00 -05:00
parent 04053c0e31
commit 5a37a7090e
88 changed files with 688 additions and 395 deletions

View File

@@ -3,24 +3,24 @@
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]
before_action :set_bookmark_collection, only: [:show, :update, :destroy, :update_status]
def index
render json: @bookmark_collections, each_serializer: REST::BookmarkCollectionSerializer
render json: @bookmark_collections, each_serializer: REST::StatusBookmarkCollectionSerializer
end
def create
@bookmark_collection = "" #current_account.custom_filters.create!(resource_params)
render json: @bookmark_collection, serializer: REST::BookmarkCollectionSerializer
@bookmark_collection = current_account.status_bookmark_collections.create!(resource_params)
render json: @bookmark_collection, serializer: REST::StatusBookmarkCollectionSerializer
end
def show
render json: @bookmark_collection, serializer: REST::BookmarkCollectionSerializer
render json: @bookmark_collection, serializer: REST::StatusBookmarkCollectionSerializer
end
def update
@bookmark_collection.update!(resource_params)
render json: @bookmark_collection, serializer: REST::BookmarkCollectionSerializer
render json: @bookmark_collection, serializer: REST::StatusBookmarkCollectionSerializer
end
def destroy
@@ -28,14 +28,18 @@ class Api::V1::BookmarkCollectionsController < Api::BaseController
render_empty_success
end
def update_status
#
end
private
def set_bookmark_collections
@bookmark_collections = "" #current_account.custom_filters
@bookmark_collections = current_account.status_bookmark_collections
end
def set_bookmark_collection
@bookmark_collection = "" # current_account.custom_filters.find(params[:id])
@bookmark_collection = current_account.status_bookmark_collections.find(params[:id])
end
def resource_params