mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
22 lines
608 B
Ruby
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
|