Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,9 @@
final case object GetParent extends RuntimeAction {
val asString = "get_parent"
}
final case object CanAccess extends RuntimeAction {
val asString = "can_access"

Check warning on line 156 in core/src/main/scala/org/broadinstitute/dsde/workbench/leonardo/samModels.scala

View check run for this annotation

Codecov / codecov/patch

core/src/main/scala/org/broadinstitute/dsde/workbench/leonardo/samModels.scala#L156

Added line #L156 was not covered by tests
}

val allActions = sealerate.values[RuntimeAction]
val stringToAction: Map[String, RuntimeAction] =
Expand Down Expand Up @@ -181,6 +184,9 @@
final case object GetParent extends PersistentDiskAction {
val asString = "get_parent"
}
final case object CanAccess extends PersistentDiskAction {
val asString = "can_access"

Check warning on line 188 in core/src/main/scala/org/broadinstitute/dsde/workbench/leonardo/samModels.scala

View check run for this annotation

Codecov / codecov/patch

core/src/main/scala/org/broadinstitute/dsde/workbench/leonardo/samModels.scala#L188

Added line #L188 was not covered by tests
}

val allActions = sealerate.values[PersistentDiskAction]
val stringToAction: Map[String, PersistentDiskAction] =
Expand Down Expand Up @@ -213,6 +219,9 @@
final case object SetParent extends AppAction {
val asString = "set_parent"
}
final case object CanAccess extends AppAction {
val asString = "can_access"

Check warning on line 223 in core/src/main/scala/org/broadinstitute/dsde/workbench/leonardo/samModels.scala

View check run for this annotation

Codecov / codecov/patch

core/src/main/scala/org/broadinstitute/dsde/workbench/leonardo/samModels.scala#L223

Added line #L223 was not covered by tests
}

val allActions = sealerate.values[AppAction]
val stringToAction: Map[String, AppAction] =
Expand Down
Loading