change to idiomatic use of layouts versus regular views

no functional change here, but familiar Rails users will see view files in the
locations they expect. this also slightly simplifies controller code

there is one attendant change in the wiki at `rails_3/A1-SQL-Injection-Interpolation.md`
that I'm happy to make after the PR is merged.
This commit is contained in:
Joseph Mastey
2017-09-27 19:22:44 -05:00
parent b7db890f51
commit d3fce41e60
10 changed files with 6 additions and 7 deletions
+2 -2
View File
@@ -15,12 +15,12 @@ class DashboardController < ApplicationController
end
def bar_graph
render :partial => "layouts/dashboard/bar_graph"
render :bar_graph, layout: false
end
def pie_charts
@user = current_user
render :partial => "layouts/dashboard/dashboard_stats"
render :dashboard_stats, layout: false
end
end