* Change e-mail domain blocks to block IPs dynamically * Update app/workers/scheduler/email_domain_block_refresh_scheduler.rb Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh> * Update app/workers/scheduler/email_domain_block_refresh_scheduler.rb Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh> Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
		
			
				
	
	
		
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| - content_for :page_title do
 | |
|   = t('admin.email_domain_blocks.title')
 | |
| 
 | |
| - content_for :heading_actions do
 | |
|   = link_to t('admin.email_domain_blocks.add_new'), new_admin_email_domain_block_path, class: 'button'
 | |
| 
 | |
| - content_for :header_tags do
 | |
|   = javascript_pack_tag 'admin', async: true, crossorigin: 'anonymous'
 | |
| 
 | |
| = form_for(@form, url: batch_admin_email_domain_blocks_path) do |f|
 | |
|   = hidden_field_tag :page, params[:page] || 1
 | |
| 
 | |
|   .batch-table
 | |
|     .batch-table__toolbar
 | |
|       %label.batch-table__toolbar__select.batch-checkbox-all
 | |
|         = check_box_tag :batch_checkbox_all, nil, false
 | |
|       .batch-table__toolbar__actions
 | |
|         = f.button safe_join([fa_icon('times'), t('admin.email_domain_blocks.delete')]), name: :delete, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') }
 | |
|     .batch-table__body
 | |
|       - if @email_domain_blocks.empty?
 | |
|         = nothing_here 'nothing-here--under-tabs'
 | |
|       - else
 | |
|         = render partial: 'email_domain_block', collection: @email_domain_blocks.flat_map { |x| [x, x.children.to_a].flatten }, locals: { f: f }
 | |
| 
 | |
| = paginate @email_domain_blocks
 |