mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-10 07:18:14 -05:00
Also change back to run CI on ubuntu-latest which should work with all Ruby versions supported now.
12 lines
199 B
Ruby
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
|