package blog
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- case class ActivateBlogPayloadDto(id: BlogId) extends Product with Serializable
- case class AssignBlogPrincipalPayloadDto(id: BlogId, principal: AnnettePrincipal) extends Product with Serializable
- 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
- 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
- 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
- case class DeactivateBlogPayloadDto(id: BlogId) extends Product with Serializable
- case class DeleteBlogPayloadDto(id: BlogId) extends Product with Serializable
- case class UnassignBlogPrincipalPayloadDto(id: BlogId, principal: AnnettePrincipal) extends Product with Serializable
- case class UpdateBlogCategoryPayloadDto(id: BlogId, categoryId: CategoryId) extends Product with Serializable
- case class UpdateBlogDescriptionPayloadDto(id: BlogId, description: String) extends Product with Serializable
- case class UpdateBlogNamePayloadDto(id: BlogId, name: String) extends Product with Serializable
Value Members
- object ActivateBlogPayloadDto extends Serializable
- object AssignBlogPrincipalPayloadDto extends Serializable
- object BlogFindQueryDto extends Serializable
- object BlogViewDto extends Serializable
- object CreateBlogPayloadDto extends Serializable
- object DeactivateBlogPayloadDto extends Serializable
- object DeleteBlogPayloadDto extends Serializable
- object UnassignBlogPrincipalPayloadDto extends Serializable
- object UpdateBlogCategoryPayloadDto extends Serializable
- object UpdateBlogDescriptionPayloadDto extends Serializable
- object UpdateBlogNamePayloadDto extends Serializable