today_ai_weather/app/controllers/home_controller.rb

7 lines
229 B
Ruby
Raw Permalink Normal View History

class HomeController < ApplicationController
def index
@latest_arts = WeatherArt.includes(:city).order(created_at: :desc).limit(6)
@featured_arts = WeatherArt.includes(:city).order(created_at: :desc).limit(5)
end
end