Flockingbird/roost

View on GitHub
app/web/controllers/web/home_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Web
  ##
  # Renders homepage.
  # Also acts as fallback for static files
  class HomeController < WebController
    get('/') { erb :home }
  end
end