Skip to content

Commit

Permalink
Updated TripController.java to allow SuperUser to view trips page
Browse files Browse the repository at this point in the history
  • Loading branch information
JLpro-cd committed Oct 27, 2024
1 parent 59bdd53 commit 35eac32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/femr/ui/controllers/admin/TripController.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import java.util.stream.Collectors;

@Security.Authenticated(FEMRAuthenticated.class)
@AllowedRoles({Roles.ADMINISTRATOR})
@AllowedRoles({Roles.ADMINISTRATOR, Roles.SUPERUSER})
public class TripController extends Controller {

private final AssetsFinder assetsFinder;
Expand Down

0 comments on commit 35eac32

Please sign in to comment.