Fix account creation

This commit is contained in:
Rob Zolkos
2024-02-02 23:06:29 +00:00
parent ace7fb48ee
commit 48ade396ca
17 changed files with 204 additions and 90 deletions

View File

@@ -79,4 +79,7 @@ Rails.application.configure do
# Apply autocorrection by RuboCop to files generated by `bin/rails generate`.
config.generators.apply_rubocop_autocorrect_after_generate!
# Allow connection from any host in development
config.hosts = nil
end

View File

@@ -4,6 +4,7 @@ module.exports = {
content: [
'./public/*.html',
'./app/helpers/**/*.rb',
'./app/models/**/*.rb',
'./app/javascript/**/*.js',
'./app/views/**/*.{erb,haml,html,slim}'
],