Skip to content

Commit

Permalink
fix(fiat-api): fix usage of deprecated method from Permissions (#616)
Browse files Browse the repository at this point in the history
updates to fiat 1.7.2
  • Loading branch information
cfieber committed Oct 25, 2019
1 parent 3d29646 commit 62697a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class ApplicationsController {

def applications
def permissions = applicationPermissionDAO ? applicationPermissionDAO.all()
.findAll { !it.permissions.isEmpty() }
.findAll { it.permissions.isRestricted() }
.groupBy { it.name.toLowerCase() } : [:]
if (params.isEmpty()) {
applications = applicationDAO.all().sort { it.name }
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Oct 23 19:56:36 UTC 2019
clouddriverVersion=5.3.0
fiatVersion=1.5.1
fiatVersion=1.7.2
enablePublishing=false
spinnakerGradleVersion=7.0.1
korkVersion=6.14.3
Expand Down

0 comments on commit 62697a0

Please sign in to comment.