mirror of
https://gh.wpcy.net/https://github.com/fairpm/aspirecloud.git
synced 2026-06-20 02:22:28 +08:00
* feat: Changes required on existing files to setup Jetstream * feat: add the Inertia Home and Dashboard * feat: Add all required files and migrations to setup Jetstream * feat: Add the Sanctum middleware to the API endpoints - Added Sanctum to the API endpoints to requiere an API Key - Added a setting to control if the app should use authenticated API or not (see .env.example) - Fix redirection on API routes to the login page when a request was unauthenticated * feat: Users Management and Authication API Keys - Refactor existing tests to make authenticated request is enable - Hide the permissions setting on the UI, for now we only have a read-only API - Add tests to test authenticated and unauthenticated calls
30 lines
842 B
Vue
30 lines
842 B
Vue
<script setup>
|
|
import ApiTokenManager from '@/Pages/API/Partials/ApiTokenManager.vue';
|
|
import AppLayout from '@/Layouts/AppLayout.vue';
|
|
|
|
defineProps({
|
|
tokens: Array,
|
|
availablePermissions: Array,
|
|
defaultPermissions: Array,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<AppLayout title="API Tokens">
|
|
<template #header>
|
|
<h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
|
|
API Tokens
|
|
</h2>
|
|
</template>
|
|
|
|
<div>
|
|
<div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
|
|
<ApiTokenManager
|
|
:tokens="tokens"
|
|
:available-permissions="availablePermissions"
|
|
:default-permissions="defaultPermissions"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</AppLayout>
|
|
</template>
|