johnrees/fablabs

View on GitHub
app/controllers/api/v2/machines_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Api::V2::MachinesController < Api::V2::ApiController

  before_action :doorkeeper_authorize!

  def create
    render_json not_implemented

  end

  def show
    render_json not_implemented

  end

  def index
    render_json not_implemented

  end

  def update
    render_json not_implemented

  end
end