Actions

@Serializable
data class Actions(val deleteSelf: Boolean = false, val createOrganization: Boolean = false)

Configuration for user actions and permissions.

This class defines what actions users are allowed to perform within the application, such as deleting their own account or creating organizations.

Constructors

Link copied to clipboard
constructor(deleteSelf: Boolean = false, createOrganization: Boolean = false)

Properties

Link copied to clipboard
@SerialName(value = "create_organization")
val createOrganization: Boolean = false

Whether users can create organizations

Link copied to clipboard
@SerialName(value = "delete_self")
val deleteSelf: Boolean = false

Whether users can delete their own accounts