You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sqm-dashboards/app/controllers/dashboard_controller.rb

13 lines
178 B

class DashboardController < ApplicationController
def index
@school = School.find_by_slug school_slug
end
private
def school_slug
params[:school_id]
end
end