Class: MailEngine::MailLogsController
Constant Summary
Constants included
from MailEngine
PLACEHOLDERS_IN_LAYOUT, VERSION
Instance Method Summary
collapse
#close_modal_and_refresh
Instance Method Details
#destroy ⇒ Object
11
12
13
14
|
# File 'app/controllers/mail_engine/mail_logs_controller.rb', line 11
def destroy
@mail_log.destroy
redirect_to mail_logs_path
end
|
#index ⇒ Object
4
5
6
|
# File 'app/controllers/mail_engine/mail_logs_controller.rb', line 4
def index
@mail_logs = MailLog.order("created_at desc").page(params[:page]).per(20)
end
|
#show ⇒ Object
8
9
|
# File 'app/controllers/mail_engine/mail_logs_controller.rb', line 8
def show
end
|