sibprogrammer/owp

View on GitHub
app/controllers/iphone/dashboard_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Iphone::DashboardController < Iphone::Base

  def index
    @page_title = t('admin.dashboard.title')
    @show_home_button = false
  end

  def stats
    @page_title = t('admin.dashboard.stats_grid.title')
    @stats = get_stats
  end

end