Basic implementation of payment methods

This commit is contained in:
2026-07-28 15:50:58 +02:00
parent afc91545a9
commit 6c9281516e
39 changed files with 749 additions and 24 deletions
+6
View File
@@ -6,6 +6,7 @@ import TenantContact from "./Partials/TenantContact.vue";
import TenantPayment from "./Partials/TenantPayment.vue";
import TenantImpress from "./Partials/TenantImpress.vue";
import TenantGdpr from "./Partials/TenantGdpr.vue";
import TenantPaymentMethods from "./Partials/TenantPaymentMethods.vue";
const props = defineProps({
tenant: Object,
@@ -22,6 +23,11 @@ const tabs = [
component: TenantPayment,
endpoint: '/api/v1/admin/tenant/payment',
},
{
title: 'Zahlungswege',
component: TenantPaymentMethods,
endpoint: '/api/v1/admin/tenant/payment-methods',
},
{
title: 'Impressum',
component: TenantImpress,