mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 19:06:18 +01:00 
			
		
		
		
	Redirect on changed user and org name (#11649)
* Add redirect for user * Add redirect for orgs * Add user redirect test * Appease linter * Add comment to DeleteUserRedirect function * Fix locale changes * Fix GetUserByParams * Fix orgAssignment * Remove debug logging * Add redirect prompt * Dont Export DeleteUserRedirect & only use it within a session * Unexport newUserRedirect * cleanup * Fix & Dedub API code * Format Template * Add Migration & rm dublicat * Refactor: unexport newRepoRedirect() & rm dedub del exec * if this fails we'll need to re-rename the user directory Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
		| @@ -1736,10 +1736,13 @@ function initOrganization() { | ||||
|   if ($('.organization.settings.options').length > 0) { | ||||
|     $('#org_name').on('keyup', function () { | ||||
|       const $prompt = $('#org-name-change-prompt'); | ||||
|       const $prompt_redirect = $('#org-name-change-redirect-prompt'); | ||||
|       if ($(this).val().toString().toLowerCase() !== $(this).data('org-name').toString().toLowerCase()) { | ||||
|         $prompt.show(); | ||||
|         $prompt_redirect.show(); | ||||
|       } else { | ||||
|         $prompt.hide(); | ||||
|         $prompt_redirect.hide(); | ||||
|       } | ||||
|     }); | ||||
|   } | ||||
| @@ -1755,10 +1758,13 @@ function initUserSettings() { | ||||
|   if ($('.user.settings.profile').length > 0) { | ||||
|     $('#username').on('keyup', function () { | ||||
|       const $prompt = $('#name-change-prompt'); | ||||
|       const $prompt_redirect = $('#name-change-redirect-prompt'); | ||||
|       if ($(this).val().toString().toLowerCase() !== $(this).data('name').toString().toLowerCase()) { | ||||
|         $prompt.show(); | ||||
|         $prompt_redirect.show(); | ||||
|       } else { | ||||
|         $prompt.hide(); | ||||
|         $prompt_redirect.hide(); | ||||
|       } | ||||
|     }); | ||||
|   } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user