| 1 | # frozen_string_literal: true |
| 2 | |
| 3 | module Admin |
| 4 | # The admin landing page: the business at a glance — growth, catalog, and |
| 5 | # recurring revenue. Read-only; the rollups live in Admin::DashboardMetrics. |
| 6 | class DashboardController < BaseController |
| 7 | def show |
| 8 | @metrics = DashboardMetrics.new |
| 9 | end |
| 10 | end |
| 11 | end |