holderdeord/hdo-site

View on GitHub
app/controllers/api/hdo/blog_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Api
  module Hdo
    class BlogController < ApiController
      def index
        respond_with ::Hdo::Utils::BlogFetcher.last(10)
      end
    end
  end
end