Files
devise/test/rails_app/app/controllers/streaming_controller.rb
Carlos Antonio da Silva 49e4a991cf Remove some more code added to support older versions
Also change back to run CI on ubuntu-latest which should work with all
Ruby versions supported now.
2023-10-13 11:02:45 -03:00

12 lines
199 B
Ruby

# frozen_string_literal: true
class StreamingController < ApplicationController
include ActionController::Live
before_action :authenticate_user!
def index
render body: 'Index'
end
end