Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Xinecraft committed Dec 24, 2024
1 parent 7edc1dc commit 091634e
Show file tree
Hide file tree
Showing 196 changed files with 1,857 additions and 1,812 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function indexOpen(Request $request)
$query->whereIn('recruitment_id', $selectedRecruitments);
})
->whereIn('recruitment_id', $recruitments->keys())
->with(['user:id,name,username', 'recruitment', 'lastActor:id,username,name,profile_photo_path,verified_at,settings', 'lastCommentor:id,username,name,profile_photo_path,verified_at,settings'])
->with(['user:id,name,username,profile_photo_path,verified_at,muted_at', 'recruitment', 'lastActor:id,username,name,profile_photo_path,verified_at,settings', 'lastCommentor:id,username,name,profile_photo_path,verified_at,settings'])
->select($fields)
->allowedFilters([
...$fields,
Expand Down Expand Up @@ -145,7 +145,7 @@ public function indexClosed(Request $request)
$query->whereIn('recruitment_id', $selectedRecruitments);
})
->whereIn('recruitment_id', $recruitments->keys())
->with(['user:id,name,username', 'recruitment', 'lastActor:id,name,username', 'lastCommentor:id,name,username'])
->with(['user:id,name,username,profile_photo_path,verified_at,muted_at', 'recruitment', 'lastActor:id,name,username,profile_photo_path,verified_at,muted_at', 'lastCommentor:id,name,username,profile_photo_path,verified_at,muted_at'])
->select($fields)
->allowedFilters([
...$fields,
Expand Down Expand Up @@ -182,7 +182,7 @@ public function show(Request $request, RecruitmentSubmission $submission)
$this->authorize('view', $submission);

$submission->load([
'user:id,name,username',
'user:id,name,username,profile_photo_path,verified_at,muted_at',
'recruitment',
'lastActor:id,name,username',
]);
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 091634e

Please sign in to comment.