Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.

Commit 62697a0

Browse files
authored
fix(fiat-api): fix usage of deprecated method from Permissions (#616)
updates to fiat 1.7.2
1 parent 3d29646 commit 62697a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

front50-web/src/main/groovy/com/netflix/spinnaker/front50/controllers/v2/ApplicationsController.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public class ApplicationsController {
7575

7676
def applications
7777
def permissions = applicationPermissionDAO ? applicationPermissionDAO.all()
78-
.findAll { !it.permissions.isEmpty() }
78+
.findAll { it.permissions.isRestricted() }
7979
.groupBy { it.name.toLowerCase() } : [:]
8080
if (params.isEmpty()) {
8181
applications = applicationDAO.all().sort { it.name }

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Oct 23 19:56:36 UTC 2019
22
clouddriverVersion=5.3.0
3-
fiatVersion=1.5.1
3+
fiatVersion=1.7.2
44
enablePublishing=false
55
spinnakerGradleVersion=7.0.1
66
korkVersion=6.14.3

0 commit comments

Comments
 (0)