class ApplicationController < ActionController::Base
  before_action :do_something

  private

  def do_something
    asdf
  end
end