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