debian-mirror-gitlab/derailed-benchmarks/test/rails_app/app/controllers/authenticated_controller.rb
2019-10-03 20:48:27 +05:30

8 lines
144 B
Ruby

# frozen_string_literal: true
class AuthenticatedController < ApplicationController
before_action :authenticate_user!
def index
end
end