File: authenticated_controller.rb

package info (click to toggle)
ruby-derailed-benchmarks 1.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 760 kB
  • sloc: ruby: 1,317; makefile: 4
file content (8 lines) | stat: -rw-r--r-- 144 bytes parent folder | download
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class AuthenticatedController < ApplicationController
  before_action :authenticate_user!

  def index
  end
end