rubysg/rubysg-reboot

View on GitHub
app/controllers/companies_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CompaniesController < ApplicationController
  def index
    @supporter_companies = Company.supporters
    @other_companies = Company.non_supporters
  end
end