Skip to content

Commit

Permalink
Fix missing AccountsGet view
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon committed Feb 2, 2024
1 parent e43c89e commit a01cc6a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/views/AccountsGet.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<template>
<b-row>
<b-col>
<passthrough-get :endpoint="endpoint" :success-redirect-view-name="successRedirectViewName" />
</b-col>
</b-row>
</template>
<script>
import PassthroughGet from '@/components/PassthroughGet.vue';
export default {
name: 'AccountsPassthroughGetPage',
components: {
PassthroughGet
},
props: {
successRedirectViewName: {
type: String,
default: ''
}
},
data: function() {
return {
endpoint: this.$route.path
};
}
};
</script>

0 comments on commit a01cc6a

Please sign in to comment.