PhoenixKitProjects.Schemas.TaskDependency (PhoenixKitProjects v0.5.1)

Copy Markdown View Source

Default dependency between task templates. When both tasks are added to the same project, the assignment dependency is auto-created.

Summary

Types

t()

@type t() :: %PhoenixKitProjects.Schemas.TaskDependency{
  __meta__: term(),
  depends_on_task:
    PhoenixKitProjects.Schemas.Task.t() | Ecto.Association.NotLoaded.t() | nil,
  depends_on_task_uuid: UUIDv7.t() | nil,
  inserted_at: DateTime.t() | nil,
  task:
    PhoenixKitProjects.Schemas.Task.t() | Ecto.Association.NotLoaded.t() | nil,
  task_uuid: UUIDv7.t() | nil,
  uuid: UUIDv7.t() | nil
}

Functions

changeset(dep, attrs)