mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-03-23 19:08:41 +00:00
- ✨ Refactor edit.blade.php to handle admin-specific fields (accepted and sats_paid) through conditional logic.
- 📦 Upgrade Laravel framework, Livewire, and dependencies to ensure compatibility with version `13.1.1`.
This commit is contained in:
@@ -22,15 +22,15 @@ beforeEach(function () {
|
||||
'event_id' => 'test_event_'.Str::random(40),
|
||||
]);
|
||||
|
||||
$this->project = ProjectProposal::query()->create([
|
||||
'einundzwanzig_pleb_id' => $this->pleb->id,
|
||||
'name' => 'Original Project',
|
||||
'description' => 'Original Description',
|
||||
'support_in_sats' => 21000,
|
||||
'website' => 'https://original.example.com',
|
||||
'accepted' => false,
|
||||
'sats_paid' => 0,
|
||||
]);
|
||||
$this->project = new ProjectProposal;
|
||||
$this->project->einundzwanzig_pleb_id = $this->pleb->id;
|
||||
$this->project->name = 'Original Project';
|
||||
$this->project->description = 'Original Description';
|
||||
$this->project->support_in_sats = 21000;
|
||||
$this->project->website = 'https://original.example.com';
|
||||
$this->project->accepted = false;
|
||||
$this->project->sats_paid = 0;
|
||||
$this->project->save();
|
||||
|
||||
// Get board member pubkeys from config
|
||||
$this->boardMember = EinundzwanzigPleb::query()->create([
|
||||
|
||||
Reference in New Issue
Block a user