count-anything/app/controllers/profile/home_controller.rb

7 lines
113 B
Ruby
Raw Normal View History

class Profile::HomeController < ApplicationController
before_action :authenticate_user!
def index
end
end