Adam Miribyan
Joined
        110 Experience
      
    
        1 Lesson Completed
      
    
        0 Questions Solved
      
    Activity
Hi Franklin,
I believe you can define a #to_trix_content_attachment_partial_path on your User model, e.g.
class User < ApplicationRecord
    include ActionText::Attachable
    ...
    def to_trix_content_attachment_partial_path
        'users/user_trix'
    end
end