-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ensure the dummy app uses the same template as real apps. #3180
base: main
Are you sure you want to change the base?
Conversation
# Refinery does not necessarily expect action_mailer to be available as | ||
# we may not always require it (currently only the authentication extension). | ||
# Rails, however, will optimistically place config entries for action_mailer. | ||
current_mailer_config = mailer_config(env_file) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This mailer stuff should be done by refinerycms-inquiries. The core doesn't send mail.
Maybe this whole thing shouldn't even be our concern?
5a6d709
to
2ce8d43
Compare
8665525
to
857fff4
Compare
Hi @parndt ! Could you update your PR? |
4e629b3
to
d8a577b
Compare
I've tried to fix specs on this PR but i'm not sure if my commits helps. Please, could you check if you can fix specs @parndt ? |
This should fix pages fails on MySQL. I suspect, "skip_migrate" is not the right option name, "skip_migration" is also used to skip the seeds in: https://github.com/refinery/refinerycms/blob/10e63784613682db8f8b094878f60a01413b39f6/core/lib/generators/refinery/cms/cms_generator.rb#L269
c04b169
to
c3cac10
Compare
This Fails
This is work I was doing last July, but it still seems like a good thing to work on. I wasn't happy that the dummy app used a different template than the one we ask people to install with because this way we can implicitly test that template's always correct.
It needs rebasing and validating.