debian-mirror-gitlab/derailed-benchmarks/test/rails_app/app/controllers/authenticated_controller.rb

9 lines
144 B
Ruby
Raw Normal View History

2019-10-03 14:02:42 +05:30
# frozen_string_literal: true
class AuthenticatedController < ApplicationController
before_action :authenticate_user!
def index
end
end