Class: Workarea::Api::Admin::CategoriesController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/workarea/api/admin/categories_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#current_user, #sort_direction, #sort_field

Instance Method Details

#bulkObject



283
284
285
286
287
288
289
290
# File 'app/controllers/workarea/api/admin/categories_controller.rb', line 283

def bulk
  @bulk = Api::Admin::BulkUpsert.create!(
    klass: Catalog::Category,
    data: params[:categories].map(&:to_h)
  )

  head :no_content
end

#createObject



106
107
108
109
110
111
112
113
# File 'app/controllers/workarea/api/admin/categories_controller.rb', line 106

def create
  @category = Catalog::Category.create!(params[:category])
  respond_with(
    { category: @category },
    { status: :created,
    location: category_path(@category.id) }
  )
end

#destroyObject



292
293
294
295
# File 'app/controllers/workarea/api/admin/categories_controller.rb', line 292

def destroy
  @category.destroy
  head :no_content
end

#indexObject



97
98
99
100
101
102
103
104
# File 'app/controllers/workarea/api/admin/categories_controller.rb', line 97

def index
  @categories = Catalog::Category
                  .all
                  .order_by(sort_field => sort_direction)
                  .page(params[:page])

  respond_with categories: @categories
end

#showObject



245
246
247
# File 'app/controllers/workarea/api/admin/categories_controller.rb', line 245

def show
  respond_with category: @category
end

#updateObject



249
250
251
252
# File 'app/controllers/workarea/api/admin/categories_controller.rb', line 249

def update
  @category.update_attributes!(params[:category])
  respond_with category: @category
end