discourse/app/controllers/custom_homepage_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
136 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CustomHomepageController < ApplicationController
def index
render "default/custom"
end
end