Fix invitation links not working when invite request text is required (#15385)
Fixes #15383 Co-authored-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
		
							parent
							
								
									7bf3c6e57b
								
							
						
					
					
						commit
						6f51fd7435
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -83,7 +83,7 @@ class User < ApplicationRecord | |||
| 
 | ||||
|   has_one :invite_request, class_name: 'UserInviteRequest', inverse_of: :user, dependent: :destroy | ||||
|   accepts_nested_attributes_for :invite_request, reject_if: ->(attributes) { attributes['text'].blank? && !Setting.require_invite_text } | ||||
|   validates :invite_request, presence: true, on: :create, if: -> { Setting.require_invite_text } | ||||
|   validates :invite_request, presence: true, on: :create, if: -> { Setting.require_invite_text && !invited? } | ||||
| 
 | ||||
|   validates :locale, inclusion: I18n.available_locales.map(&:to_s), if: :locale? | ||||
|   validates_with BlacklistedEmailValidator, on: :create | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue