| 
									
										
										
										
											2016-03-19 19:20:07 +01:00
										 |  |  | # Preview all emails at http://localhost:3000/rails/mailers/notification_mailer | 
					
						
							|  |  |  | class NotificationMailerPreview < ActionMailer::Preview | 
					
						
							|  |  |  |   # Preview this email at http://localhost:3000/rails/mailers/notification_mailer/mention | 
					
						
							|  |  |  |   def mention | 
					
						
							| 
									
										
										
										
											2017-03-03 23:45:48 +01:00
										 |  |  |     m = Mention.last | 
					
						
							|  |  |  |     NotificationMailer.mention(m.account, Notification.find_by(activity: m)) | 
					
						
							| 
									
										
										
										
											2016-03-19 19:20:07 +01:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Preview this email at http://localhost:3000/rails/mailers/notification_mailer/follow | 
					
						
							|  |  |  |   def follow | 
					
						
							| 
									
										
										
										
											2017-03-03 23:45:48 +01:00
										 |  |  |     f = Follow.last | 
					
						
							|  |  |  |     NotificationMailer.follow(f.target_account, Notification.find_by(activity: f)) | 
					
						
							| 
									
										
										
										
											2016-03-19 19:20:07 +01:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Preview this email at http://localhost:3000/rails/mailers/notification_mailer/favourite | 
					
						
							|  |  |  |   def favourite | 
					
						
							| 
									
										
										
										
											2017-03-03 23:45:48 +01:00
										 |  |  |     f = Favourite.last | 
					
						
							|  |  |  |     NotificationMailer.favourite(f.status.account, Notification.find_by(activity: f)) | 
					
						
							| 
									
										
										
										
											2016-03-19 19:20:07 +01:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Preview this email at http://localhost:3000/rails/mailers/notification_mailer/reblog | 
					
						
							|  |  |  |   def reblog | 
					
						
							| 
									
										
										
										
											2017-03-03 23:45:48 +01:00
										 |  |  |     r = Status.where.not(reblog_of_id: nil).first | 
					
						
							|  |  |  |     NotificationMailer.reblog(r.reblog.account, Notification.find_by(activity: r)) | 
					
						
							| 
									
										
										
										
											2016-03-19 19:20:07 +01:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-03 23:45:48 +01:00
										 |  |  |   # Preview this email at http://localhost:3000/rails/mailers/notification_mailer/digest | 
					
						
							|  |  |  |   def digest | 
					
						
							|  |  |  |     NotificationMailer.digest(Account.first, since: 90.days.ago) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2016-03-19 19:20:07 +01:00
										 |  |  | end |