Add presence validation to Import (#1928)
``` *An* `ActiveRecord::StatementInvalid` *occurred while* `POST </settings/import>` *was processed by* `imports#create` Exception ---------------- PG::NotNullViolation: ERROR: null value in column "type" violates not-null constraint ```
This commit is contained in:
		
							parent
							
								
									77d1447ac4
								
							
						
					
					
						commit
						de72db99fa
					
				
					 1 changed files with 5 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -1,13 +1,15 @@
 | 
			
		|||
# frozen_string_literal: true
 | 
			
		||||
 | 
			
		||||
class Import < ApplicationRecord
 | 
			
		||||
  FILE_TYPES = ['text/plain', 'text/csv'].freeze
 | 
			
		||||
 | 
			
		||||
  self.inheritance_column = false
 | 
			
		||||
 | 
			
		||||
  belongs_to :account, required: true
 | 
			
		||||
 | 
			
		||||
  enum type: [:following, :blocking, :muting]
 | 
			
		||||
 | 
			
		||||
  belongs_to :account
 | 
			
		||||
 | 
			
		||||
  FILE_TYPES = ['text/plain', 'text/csv'].freeze
 | 
			
		||||
  validates :type, presence: true
 | 
			
		||||
 | 
			
		||||
  has_attached_file :data, url: '/system/:hash.:extension', hash_secret: ENV['PAPERCLIP_SECRET']
 | 
			
		||||
  validates_attachment_content_type :data, content_type: FILE_TYPES
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue