From 633ea49002b5157c5a70b87b931e24a09279d306 Mon Sep 17 00:00:00 2001 From: fsociety Date: Wed, 2 Oct 2024 01:00:42 +0200 Subject: [PATCH] feat: update amountToPay value from 21 to 21000 This commit updates the value of `amountToPay` from 21 to 21000 in the `profile.blade.php` view. This change is applied to both the initial state setup and the condition where the current association status is active. The description for active members is also updated to reflect this change. --- resources/views/pages/association/profile.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/pages/association/profile.blade.php b/resources/views/pages/association/profile.blade.php index 4cfb070..cf35477 100644 --- a/resources/views/pages/association/profile.blade.php +++ b/resources/views/pages/association/profile.blade.php @@ -29,7 +29,7 @@ state(['events' => []]); state(['payments' => []]); state(['invoice' => null]); state(['qrCode' => null]); -state(['amountToPay' => 21]); +state(['amountToPay' => 21000]); state(['currentYearIsPaid' => false]); state(['currentPubkey' => null]); state(['currentPleb' => null]); @@ -58,7 +58,7 @@ on([ ]) ->where('pubkey', $pubkey)->first(); if ($this->currentPleb->association_status === \App\Enums\AssociationStatus::ACTIVE) { - $this->amountToPay = 21; + $this->amountToPay = 21000; } if ($this->currentPleb->paymentEvents->count() < 1) { $this->createPaymentEvent(); @@ -360,7 +360,7 @@ $loadEvents = function () {

Aktivmitglieder arbeiten ehrenamtlich für den Verein, z.B. als Podcast-Moderator oder Software-Entwickler. Der Vorstand wählt sie aus. Nur Menschen können - Aktivmitglieder werden, zahlen 21 Satoshis im Jahr und haben volles Stimmrecht. + Aktivmitglieder werden, zahlen 21.000 Satoshis im Jahr und haben volles Stimmrecht.