class SettingsController < ApplicationController before_action :require_user_signed_in before_action :set_current_section def index end private def set_current_section @current_section = :settings end end