akkounts/app/controllers/dashboard_controller.rb

7 lines
113 B
Ruby

class DashboardController < ApplicationController
before_action :require_user_signed_in
def index
end
end