Skip to content

Commit

Permalink
fixup! Fixes #24558: Upmerge removed breaks 8.1 - api acl plugin
Browse files Browse the repository at this point in the history
Fixes #24558: Upmerge removed breaks 8.1 - api acl plugin
  • Loading branch information
fanf committed Mar 21, 2024
1 parent aab901e commit 4fbbac8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ object ApiAuthorization {
case object RO extends ApiAuthorization { override val kind: ApiAuthorizationKind = ApiAuthorizationKind.RO }
final case class ACL(acl: List[ApiAclElement]) extends ApiAuthorization {
override def kind: ApiAuthorizationKind = ApiAuthorizationKind.ACL
def debugString: String = acl.map(_.display).mkString(";")
def debugString: String = acl.map(_.display).mkString(";")
}

/**
Expand Down

0 comments on commit 4fbbac8

Please sign in to comment.