Class: Collavre::EmailsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- ApplicationController
- Collavre::EmailsController
- Defined in:
- app/controllers/collavre/emails_controller.rb
Instance Method Summary collapse
Instance Method Details
#index ⇒ Object
5 6 7 |
# File 'app/controllers/collavre/emails_controller.rb', line 5 def index @emails = Email.order(created_at: :desc).limit(50) end |
#show ⇒ Object
9 10 11 |
# File 'app/controllers/collavre/emails_controller.rb', line 9 def show @email = Email.find(params[:id]) end |