8 lines
139 B
Ruby
8 lines
139 B
Ruby
class AccountController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def index
|
|
@current_section = :account
|
|
end
|
|
end
|