Account connections #424

Merged
jsegarra merged 8 commits from :feature/AccountConnections into dev 2024-06-11 08:53:27 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 0289c167ee - Show all commits

View File

@ -1,5 +1,5 @@
<script setup>
import { computed, ref } from 'vue';
import { ref } from 'vue';
import { useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n';
@ -18,7 +18,7 @@ const { notify } = useNotify();
const { openConfirmationModal } = useVnConfirm();
const paginateRef = ref(null);
const filter = computed(() => ({
const filter = {
fields: ['id', 'created', 'userId'],
include: {
relation: 'user',
@ -27,7 +27,7 @@ const filter = computed(() => ({
},
},
order: 'created DESC',
}));
};
const urlPath = 'AccessTokens';