Packages

package blog

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. case class ActivateBlogPayloadDto(id: BlogId) extends Product with Serializable
  2. case class AssignBlogPrincipalPayloadDto(id: BlogId, principal: AnnettePrincipal) extends Product with Serializable
  3. case class BlogFindQueryDto(offset: Int = 0, size: Int, filter: Option[String] = None, blogIds: Option[Set[BlogId]] = None, categories: Option[Set[CategoryId]] = None, sortBy: Option[Seq[SortBy]] = None) extends Product with Serializable
  4. case class BlogViewDto(id: BlogId, name: String, description: String, categoryId: CategoryId, active: Boolean, subscriptions: Set[AnnettePrincipal], authors: Set[AnnettePrincipal] = Set.empty, updatedBy: AnnettePrincipal, updatedAt: OffsetDateTime = OffsetDateTime.now) extends Product with Serializable
  5. case class CreateBlogPayloadDto(id: BlogId, name: String, description: String, categoryId: CategoryId, authors: Set[AnnettePrincipal] = Set.empty, targets: Set[AnnettePrincipal] = Set.empty) extends Product with Serializable
  6. case class DeactivateBlogPayloadDto(id: BlogId) extends Product with Serializable
  7. case class DeleteBlogPayloadDto(id: BlogId) extends Product with Serializable
  8. case class UnassignBlogPrincipalPayloadDto(id: BlogId, principal: AnnettePrincipal) extends Product with Serializable
  9. case class UpdateBlogCategoryPayloadDto(id: BlogId, categoryId: CategoryId) extends Product with Serializable
  10. case class UpdateBlogDescriptionPayloadDto(id: BlogId, description: String) extends Product with Serializable
  11. case class UpdateBlogNamePayloadDto(id: BlogId, name: String) extends Product with Serializable

Ungrouped