playground/app/controllers/miniblog_controller.rb
2026-05-17 03:44:36 +00:00

10 lines
155 B
Ruby

class MiniblogController < ApplicationController
allow_unauthenticated_access
def index
@updates = Miniblog.order(created_at: :desc)
end
end