mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	 4014a846f0
			
		
	
	4014a846f0
	
	
	
		
			
			FE support for https://github.com/chatwoot/chatwoot/pull/12290 ## Linear: - https://github.com/chatwoot/chatwoot/issues/486 ## Description This PR implements Multi-Factor Authentication (MFA) support for user accounts, enhancing security by requiring a second form of verification during login. The feature adds TOTP (Time-based One-Time Password) authentication with QR code generation and backup codes for account recovery. ## Type of change - [ ] New feature (non-breaking change which adds functionality) ## How Has This Been Tested? - Added comprehensive RSpec tests for MFA controller functionality - Tested MFA setup flow with QR code generation - Verified OTP validation and backup code generation - Tested login flow with MFA enabled/disabled ## Checklist: - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --------- Co-authored-by: Pranav <pranav@chatwoot.com> Co-authored-by: iamsivin <iamsivin@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
		
			
				
	
	
		
			86 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <script>
 | |
| import SnackbarContainer from './components/SnackBar/Container.vue';
 | |
| 
 | |
| export default {
 | |
|   components: { SnackbarContainer },
 | |
|   data() {
 | |
|     return { theme: 'light' };
 | |
|   },
 | |
|   mounted() {
 | |
|     this.setColorTheme();
 | |
|     this.listenToThemeChanges();
 | |
|     this.setLocale(window.chatwootConfig.selectedLocale);
 | |
|   },
 | |
|   methods: {
 | |
|     setColorTheme() {
 | |
|       if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
 | |
|         this.theme = 'dark';
 | |
|         document.documentElement.classList.add('dark');
 | |
|       } else {
 | |
|         this.theme = 'light';
 | |
|         document.documentElement.classList.remove('dark');
 | |
|       }
 | |
|     },
 | |
|     listenToThemeChanges() {
 | |
|       const mql = window.matchMedia('(prefers-color-scheme: dark)');
 | |
| 
 | |
|       mql.onchange = e => {
 | |
|         if (e.matches) {
 | |
|           this.theme = 'dark';
 | |
|           document.documentElement.classList.add('dark');
 | |
|         } else {
 | |
|           this.theme = 'light';
 | |
|           document.documentElement.classList.remove('dark');
 | |
|         }
 | |
|       };
 | |
|     },
 | |
|     setLocale(locale) {
 | |
|       this.$root.$i18n.locale = locale;
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <template>
 | |
|   <div class="h-full min-h-screen w-full antialiased" :class="theme">
 | |
|     <router-view />
 | |
|     <SnackbarContainer />
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <style lang="scss">
 | |
| @tailwind base;
 | |
| @tailwind components;
 | |
| @tailwind utilities;
 | |
| 
 | |
| @import '../dashboard/assets/scss/next-colors';
 | |
| 
 | |
| html,
 | |
| body {
 | |
|   font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
 | |
|     Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
 | |
|   @apply h-full w-full;
 | |
| 
 | |
|   input,
 | |
|   select {
 | |
|     outline: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .text-link {
 | |
|   @apply text-n-brand font-medium hover:text-n-blue-10;
 | |
| }
 | |
| 
 | |
| .v-popper--theme-tooltip .v-popper__inner {
 | |
|   background: black !important;
 | |
|   font-size: 0.75rem;
 | |
|   padding: 4px 8px !important;
 | |
|   border-radius: 6px;
 | |
|   font-weight: 400;
 | |
| }
 | |
| 
 | |
| .v-popper--theme-tooltip .v-popper__arrow-container {
 | |
|   display: none;
 | |
| }
 | |
| </style>
 |