8 lines
136 B
Ruby
8 lines
136 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class CustomHomepageController < ApplicationController
|
||
|
def index
|
||
|
render "default/custom"
|
||
|
end
|
||
|
end
|