usecase: I expect users to have directory “.venvs” in their home.
How can I point path_selector to start there?
You’d set show_hidden: true and set the directory to the current users directory.
Something like this with ERB - I’m not sure if ~ would work, but seems like it should if it doesn’t.
path:
widget: path_selector
show_hidden: true
direcctory: "<%= CurrentUser.home %>"
You need to rename the file from form.yml to form.yml.erb so that it’ll template the file.
