10 lines
155 B
Ruby
10 lines
155 B
Ruby
class MiniblogController < ApplicationController
|
|
|
|
allow_unauthenticated_access
|
|
|
|
def index
|
|
@updates = Miniblog.order(created_at: :desc)
|
|
end
|
|
|
|
|
|
end
|