voting added

This commit is contained in:
HolgerHatGarKeineNode
2023-03-11 10:42:09 +01:00
parent 135d9fc1eb
commit 79b0f44143
2 changed files with 15 additions and 9 deletions

View File

@@ -58,7 +58,7 @@ class ProjectProposalVoting extends Component
$this->vote->value = true;
$this->vote->save();
return to_route('project.voting.projectFunding',
return to_route('voting.projectFunding',
['projectProposal' => $this->projectProposal, 'fromUrl' => $this->fromUrl]);
}
@@ -69,7 +69,7 @@ class ProjectProposalVoting extends Component
$this->vote->value = false;
$this->vote->save();
return to_route('project.voting.projectFunding',
return to_route('voting.projectFunding',
['projectProposal' => $this->projectProposal, 'fromUrl' => $this->fromUrl]);
}