WIP: Road to 1.0.0 #1

Draft
miguel456 wants to merge 123 commits from develop into master
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 521810c23c - Show all commits

View File

@ -108,7 +108,7 @@ class TeamController extends Controller
public function update(EditTeamRequest $request, Team $team): RedirectResponse public function update(EditTeamRequest $request, Team $team): RedirectResponse
{ {
$this->authorize('update', $team); $this->authorize('update', $team);
$team = $this->teamService->updateTeam($team, $request->teamDescription, $team->joinType); $team = $this->teamService->updateTeam($team, $request->teamDescription, $request->joinType);
if ($team) { if ($team) {