dblock/slack-gamebot

View on GitHub
slack-gamebot/api/endpoints/status_endpoint.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Api
  module Endpoints
    class StatusEndpoint < Grape::API
      format :json

      namespace :status do
        desc 'Get system status.'
        get do
          present self, with: Api::Presenters::StatusPresenter
        end
      end
    end
  end
end