7 lines
131 B
Ruby
7 lines
131 B
Ruby
class HomeController < ApplicationController
|
|
def index
|
|
config = get_conf
|
|
@current_dir = config["project_path"]
|
|
end
|
|
end
|