diff --git a/modules/app/.env.example b/modules/app/.env.example index 28d350d..6eec5ed 100644 --- a/modules/app/.env.example +++ b/modules/app/.env.example @@ -3,5 +3,7 @@ SUPABASE_URL= SUPABASE_KEY= NUXT_PUBLIC_BASE_URL= +NUXT_UI_PRO_LICENSE= + NUXT_PUBLIC_DISCORD_GUILD_ID= -NUXT_PUBLIC_SENTRY_DSN= +NUXT_PUBLIC_SENTRY_DSN= \ No newline at end of file diff --git a/modules/app/composables/permissions.ts b/modules/app/composables/permissions.ts new file mode 100644 index 0000000..22fad92 --- /dev/null +++ b/modules/app/composables/permissions.ts @@ -0,0 +1,3 @@ +export const usePermission = () => { + // ... +} \ No newline at end of file diff --git a/modules/app/pages/members/index.vue b/modules/app/pages/members/index.vue new file mode 100644 index 0000000..bdee3a5 --- /dev/null +++ b/modules/app/pages/members/index.vue @@ -0,0 +1,17 @@ + + + \ No newline at end of file