We need a section to list all System Emails to view the templates and preview an example of what would be sent.
8 lines
138 B
Ruby
8 lines
138 B
Ruby
class Admin::SystemEmailsController < Admin::BaseController
|
|
|
|
def index
|
|
@system_emails = %w(proposal_notification_digest)
|
|
end
|
|
|
|
end
|