today_ai_weather/app/controllers/weather_arts_controller.rb

7 lines
189 B
Ruby
Raw Permalink Normal View History

class WeatherArtsController < ApplicationController
def show
@city = City.friendly.find(params[:city_id])
@weather_art = @city.weather_arts.friendly.find(params[:slug])
end
end