hacken-in/hacken-in

View on GitHub
app/controllers/humans_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class HumansController < ApplicationController
  respond_to :html, :text

  def index
    @humans = User.where "team is not null"
    respond_with @humans
  end
end