Skip to content

Commit

Permalink
Add security view
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Jul 17, 2023
1 parent f454d91 commit 4772bd3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/views/Security.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<template>
<div>
<div id="personal-settings">
<h2 class="hidden-visually">{{ t('my_company', 'Security') }}</h2>
<PasswordSection />
</div>
</div>
</template>

<script>
import PasswordSection from 'apps/settings/src/components/PasswordSection.vue'
export default {
name: 'Profile',
components: {
PasswordSection,
},
}
</script>

0 comments on commit 4772bd3

Please sign in to comment.