Add System emails menu & list to admin panel

We need a section to list all System Emails to view the templates and
preview an example of what would be sent.
This commit is contained in:
Bertocq
2018-04-12 19:13:49 +02:00
committed by decabeza
parent 3fd97b0a9b
commit b9c6da245a
6 changed files with 59 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
class Admin::SystemEmailsController < Admin::BaseController
def index
@system_emails = %w(proposal_notification_digest)
end
end