14 lines
		
	
	
		
			226 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			226 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
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
 |