This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/controllers/home_controller.rb

9 lines
126 B
Ruby

class HomeController < ApplicationController
layout 'dashboard'
before_action :authenticate_user!
def index
end
end