18F/identity-dashboard

View on GitHub
app/controllers/env_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# Controller for the "environments status" page
class EnvController < ApplicationController
  def index
    @deploy_statuses = deploy_status_checker.check!
  end

  protected

  def deploy_status_checker
    @deploy_status_checker ||= DeployStatusChecker.new
  end
end