Skip to content

Commit

Permalink
Merge branch 'develop' into IA-5048-init-script-documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
LizBaldo authored Sep 20, 2024
2 parents 1f552ed + 629bb69 commit 6e8781c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ object RuntimeAction {
final case object SetParent extends RuntimeAction {
val asString = "set_parent"
}
final case object GetParent extends RuntimeAction {
val asString = "get_parent"
}

val allActions = sealerate.values[RuntimeAction]
val stringToAction: Map[String, RuntimeAction] =
Expand All @@ -175,6 +178,9 @@ object PersistentDiskAction {
final case object SetParent extends PersistentDiskAction {
val asString = "set_parent"
}
final case object GetParent extends PersistentDiskAction {
val asString = "get_parent"
}

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

0 comments on commit 6e8781c

Please sign in to comment.