-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from Ferlab-Ste-Justine/fix/cqdg-793_cavatica_…
…client_endpoints fix: CQDG-793 update for cavatica
- Loading branch information
Showing
12 changed files
with
323 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 14 additions & 1 deletion
15
src/main/scala/bio/ferlab/ferload/model/IntrospectResponse.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
package bio.ferlab.ferload.model | ||
|
||
case class IntrospectResponse(active: Boolean, exp: Option[Int], iat: Option[Int], aud: Option[String], nbf: Option[Int], permissions: Option[Seq[Permissions]]) | ||
case class IntrospectResponse( | ||
active: Boolean, | ||
exp: Option[Int], | ||
iat: Option[Int], | ||
aud: Option[String], | ||
sub: Option[String], | ||
azp: Option[String], | ||
nbf: Option[Int], | ||
authorization: Option[Authorisation] | ||
) | ||
|
||
case class Authorisation( | ||
permissions: Seq[Permissions] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package bio.ferlab.ferload.model | ||
|
||
case class Permissions(resource_id: String, rsname: Option[String], resource_scopes: Seq[String]) | ||
case class Permissions(rsid: String, rsname: Option[String], scopes: Seq[String]) |
Oops, something went wrong.