9 lines
152 B
Ruby
9 lines
152 B
Ruby
# frozen_string_literal: true
|
|
|
|
class OnboardController < ApplicationController
|
|
layout 'layouts/apified'
|
|
|
|
def index
|
|
@theme = 'minimal'
|
|
end
|
|
end
|