Skip to content

Commit

Permalink
actionmailer: Add mix-ins to ActionMailer::Base (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
tk0miya authored Oct 28, 2023
1 parent 6d937b6 commit fb6e5c0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions gems/actionmailer/7.0/actionmailer.rbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
module ActionMailer
class Base < AbstractController::Base
include AbstractController::Rendering
include AbstractController::Helpers
extend AbstractController::Helpers::ClassMethods
include AbstractController::Translation
include AbstractController::AssetPaths
include AbstractController::Callbacks
extend AbstractController::Callbacks::ClassMethods
include AbstractController::Caching
extend AbstractController::Caching::ClassMethods

include ActionView::Layouts
extend ActionView::Layouts::ClassMethods

def self.default: (**untyped) -> void

def self.layout: (String) -> void
Expand Down

0 comments on commit fb6e5c0

Please sign in to comment.