mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
13 lines
245 B
Ruby
13 lines
245 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ActionText
|
|
module Attachables
|
|
module MissingAttachable
|
|
extend ActiveModel::Naming
|
|
|
|
def self.to_partial_path
|
|
"action_text/attachables/missing_attachable"
|
|
end
|
|
end
|
|
end
|
|
end
|