delonnewman/dragnet

View on GitHub
app/controllers/authenticated.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Authenticated
  extend ActiveSupport::Concern

  included do
    protect_from_forgery with: :exception
    before_action :authenticate_user!
  end
end