Sha256: 991ffe11ddb703238bc5fe04eb4d502318cb59bb93c7d415d07c3d8cc3ea2967
Contents?: true
Size: 385 Bytes
Versions: 7
Compression:
Stored size: 385 Bytes
Contents
# frozen_string_literal: true class CombinedStatisticalAreasController < ApplicationController def index @combined_statistical_areas = USGeo::CombinedStatisticalArea.not_removed.order(:name) end def show @combined_statistical_area = USGeo::CombinedStatisticalArea.find(params[:id]) add_breadcrumb(combined_statistical_area_id: @combined_statistical_area) end end
Version data entries
7 entries across 7 versions & 1 rubygems