mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
14 lines
251 B
Ruby
14 lines
251 B
Ruby
class HelpController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
before_action :set_sidenav_expansion
|
|
|
|
def index
|
|
@page_title = "Help center"
|
|
end
|
|
|
|
def set_sidenav_expansion
|
|
@sidenav_expansion = 'my account'
|
|
end
|
|
end
|