summaryrefslogtreecommitdiff
path: root/app/controllers/api/v1/categories_controller.rb
blob: 18332b890e090a64f81931e895bf82c392b4f339 (plain)
1
2
3
4
5
6
7
8
9
module Api
  module V1
    class CategoriesController < ApiController
      def index
        @categories = Category.all
      end
    end
  end
end