Skip to content

Commit d083cf8

Browse files
committed
Allow non-admin users to see ExtractorDetails view
1 parent f2bd4c7 commit d083cf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/controllers/Extractors.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class Extractors @Inject() (extractions: ExtractionService,
7171

7272

7373

74-
def showExtractorInfo(extractorName: String) = ServerAdminAction { implicit request =>
74+
def showExtractorInfo(extractorName: String) = AuthenticatedAction { implicit request =>
7575
implicit val user = request.user
7676
val targetExtractor = extractorService.listExtractorsInfo(List.empty).find(p => p.name == extractorName)
7777
targetExtractor match {

0 commit comments

Comments
 (0)