9 lines
188 B
Ruby
9 lines
188 B
Ruby
class HomeController < ApplicationController
|
|
def index
|
|
config = get_conf
|
|
# @current_dir = config["project_path"]
|
|
@current_dir = "~"
|
|
file_directory(@current_dir)
|
|
end
|
|
end
|