Change image URL in mailer to full path (#6264)
This commit is contained in:
		
				
					committed by
					
						
						Eugen Rochko
					
				
			
			
				
	
			
			
			
						parent
						
							e6fd4bea35
						
					
				
				
					commit
					9a28052e92
				
			@@ -5,6 +5,8 @@ class UserMailer < Devise::Mailer
 | 
			
		||||
 | 
			
		||||
  helper :instance
 | 
			
		||||
 | 
			
		||||
  add_template_helper RoutingHelper
 | 
			
		||||
 | 
			
		||||
  def confirmation_instructions(user, token, **)
 | 
			
		||||
    @resource = user
 | 
			
		||||
    @token    = token
 | 
			
		||||
 
 | 
			
		||||
@@ -24,7 +24,7 @@
 | 
			
		||||
                              %tr
 | 
			
		||||
                                %td.column-cell
 | 
			
		||||
                                  = link_to root_url do
 | 
			
		||||
                                    = image_tag asset_pack_path('logo_full.svg'), height: 34, class: 'logo'
 | 
			
		||||
                                    = image_tag full_pack_url('logo_full.svg'), alt: 'Mastodon', height: 34, class: 'logo'
 | 
			
		||||
 | 
			
		||||
    = yield
 | 
			
		||||
 | 
			
		||||
@@ -52,4 +52,4 @@
 | 
			
		||||
                            %tbody
 | 
			
		||||
                              %td.column-cell.text-right
 | 
			
		||||
                                = link_to root_url do
 | 
			
		||||
                                  = image_tag asset_pack_path('logo_transparent.svg'), height: 24
 | 
			
		||||
                                  = image_tag full_pack_url('logo_transparent.svg'), alt: 'Mastodon', height: 24
 | 
			
		||||
 
 | 
			
		||||
@@ -17,7 +17,7 @@
 | 
			
		||||
                                %tbody
 | 
			
		||||
                                  %tr
 | 
			
		||||
                                    %td
 | 
			
		||||
                                      = image_tag asset_pack_path('icon_email.svg')
 | 
			
		||||
                                      = image_tag full_pack_url('icon_email.svg'), alt: ''
 | 
			
		||||
 | 
			
		||||
                              %h1= t 'devise.mailer.confirmation_instructions.title'
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -17,7 +17,7 @@
 | 
			
		||||
                                %tbody
 | 
			
		||||
                                  %tr
 | 
			
		||||
                                    %td
 | 
			
		||||
                                      = image_tag asset_pack_path('icon_email.svg')
 | 
			
		||||
                                      = image_tag full_pack_url('icon_email.svg'), alt: ''
 | 
			
		||||
 | 
			
		||||
                              %h1= t 'devise.mailer.email_changed.title'
 | 
			
		||||
                              %p.lead= t 'devise.mailer.email_changed.explanation'
 | 
			
		||||
 
 | 
			
		||||
@@ -17,7 +17,7 @@
 | 
			
		||||
                                %tbody
 | 
			
		||||
                                  %tr
 | 
			
		||||
                                    %td
 | 
			
		||||
                                      = image_tag asset_pack_path('icon_lock_open.svg')
 | 
			
		||||
                                      = image_tag full_pack_url('icon_lock_open.svg'), alt: ''
 | 
			
		||||
 | 
			
		||||
                              %h1= t 'devise.mailer.password_change.title'
 | 
			
		||||
                              %p.lead= t 'devise.mailer.password_change.explanation'
 | 
			
		||||
 
 | 
			
		||||
@@ -17,7 +17,7 @@
 | 
			
		||||
                                %tbody
 | 
			
		||||
                                  %tr
 | 
			
		||||
                                    %td
 | 
			
		||||
                                      = image_tag asset_pack_path('icon_email.svg')
 | 
			
		||||
                                      = image_tag full_pack_url('icon_email.svg'), alt: ''
 | 
			
		||||
 | 
			
		||||
                              %h1= t 'devise.mailer.reconfirmation_instructions.title'
 | 
			
		||||
                              %p.lead= t 'devise.mailer.reconfirmation_instructions.explanation'
 | 
			
		||||
 
 | 
			
		||||
@@ -17,7 +17,7 @@
 | 
			
		||||
                                %tbody
 | 
			
		||||
                                  %tr
 | 
			
		||||
                                    %td
 | 
			
		||||
                                      = image_tag asset_pack_path('icon_lock_open.svg')
 | 
			
		||||
                                      = image_tag full_pack_url('icon_lock_open.svg'), alt: ''
 | 
			
		||||
 | 
			
		||||
                              %h1= t 'devise.mailer.reset_password_instructions.title'
 | 
			
		||||
                              %p.lead= t 'devise.mailer.reset_password_instructions.explanation'
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user