Skip to content

Commit

Permalink
fix(game): grant Jr Devs access to Developer Interest page (#1896)
Browse files Browse the repository at this point in the history
  • Loading branch information
wescopeland authored Oct 27, 2023
1 parent 6022daf commit 514ea44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Platform/Controllers/GameDevInterestController.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function __invoke(Request $request): View
}

$permissions = $request->user()->getAttribute('Permissions');
if ($permissions < Permissions::Developer) {
if ($permissions < Permissions::JuniorDeveloper) {
abort(403);
}

Expand Down

0 comments on commit 514ea44

Please sign in to comment.