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

Version Path
us_geo-2.1.1 explorer_app/app/controllers/combined_statistical_areas_controller.rb
us_geo-2.1.0 explorer_app/app/controllers/combined_statistical_areas_controller.rb
us_geo-2.0.4 explorer_app/app/controllers/combined_statistical_areas_controller.rb
us_geo-2.0.3 explorer_app/app/controllers/combined_statistical_areas_controller.rb
us_geo-2.0.2 explorer_app/app/controllers/combined_statistical_areas_controller.rb
us_geo-2.0.1 explorer_app/app/controllers/combined_statistical_areas_controller.rb
us_geo-2.0.0 explorer_app/app/controllers/combined_statistical_areas_controller.rb