foalfetch/app/controllers/blogs_controller.rb

7 lines
141 B
Ruby
Raw Normal View History

2024-04-06 13:00:46 +02:00
# frozen_string_literal: true
class BlogsController < ApplicationController
def index
@blogs = Blog.order(created_at: :desc)
end
end