notebook/app/controllers/help_controller.rb
2025-07-05 18:28:21 -07:00

22 lines
608 B
Ruby

class HelpController < ApplicationController
# Make page_templates public for sharing with non-users
before_action :authenticate_user!, except: [:page_templates]
before_action :set_sidenav_expansion
layout 'tailwind'
def index
@page_title = "Help center"
end
def page_templates
@page_title = "Page Templates"
@meta_description = "Learn how to customize page templates in Notebook.ai to structure your creative content perfectly. Complete guide to categories, fields, and template management."
end
def set_sidenav_expansion
@sidenav_expansion = 'my account'
end
end