9 lines
301 B
Ruby
9 lines
301 B
Ruby
|
class ArtsController < ApplicationController
|
||
|
def index
|
||
|
@weather_arts = WeatherArt.includes(:city, city: [ :country, { country: :region } ])
|
||
|
.order(created_at: :desc)
|
||
|
.page(params[:page])
|
||
|
.per(2)
|
||
|
end
|
||
|
end
|