WIP: Next major version - AthenaHR v2 #1

Draft
miguel456 wants to merge 46 commits from develop into main
785 changed files with 5074 additions and 3841 deletions
Showing only changes of commit 0de1be64b5 - Show all commits

View File

@@ -100,11 +100,13 @@ class InvitationController extends Controller
$invitation->save(); $invitation->save();
return redirect() return redirect()
->with('success', __('Invitation denied. No notifications were sent. This user cannot be invited again.')) ->back()
->back(); ->with('success', __('Invitation denied. No notifications were sent. This user cannot be invited again.'));
} }
return redirect() return redirect()
->back()
->with('error', __('This invitation could not be denied because it is either already approved, expired, or in an otherwise invalid state.')); ->with('error', __('This invitation could not be denied because it is either already approved, expired, or in an otherwise invalid state.'));
} }