Dpalazzari/johari_window_api

View on GitHub
app/controllers/api/v1/adjectives_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Api::V1::AdjectivesController < Api::V1::BaseController

  def index
    render json: Adjective.pluck(:name)
  end

end