playground/app/controllers/miniblog_controller.rb

11 lines
155 B
Ruby
Raw Permalink Normal View History

2026-05-17 03:44:36 +00:00
class MiniblogController < ApplicationController
allow_unauthenticated_access
def index
@updates = Miniblog.order(created_at: :desc)
end
end