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