1
0
Fork 0
forked from gitea/nas
nas/app/controllers/api/v1/timelines/local_top_controller.rb
2025-06-12 20:00:16 -04:00

10 lines
No EOL
228 B
Ruby

module Api::V1::Timelines
class LocalTopController < ApiController
before_action :require_user!
def show
@statuses = LocalTopPostsService.new.call
render json: @statuses
end
end
end