Files
grecia/app/controllers/admin/system_emails_controller.rb
Bertocq b9c6da245a 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.
2018-07-25 20:19:58 +02:00

8 lines
138 B
Ruby

class Admin::SystemEmailsController < Admin::BaseController
def index
@system_emails = %w(proposal_notification_digest)
end
end