1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actiontext/lib/action_text/attachables/missing_attachable.rb

14 lines
245 B
Ruby
Raw Normal View History

2019-01-04 19:43:11 -05:00
# frozen_string_literal: true
module ActionText
2018-02-07 19:26:19 -05:00
module Attachables
module MissingAttachable
extend ActiveModel::Naming
def self.to_partial_path
"action_text/attachables/missing_attachable"
2018-02-07 19:26:19 -05:00
end
end
end
end