Documentation ¶
Index ¶
Constants ¶
View Source
const ( // ElementTypeInput will render an input ElementTypeInput = "input" // ElementTypeSelect will render a select ElementTypeSelect = "select" // ElementTypeCheckbox will render a checkbox ElementTypeCheckbox = "checkbox" // ElementTypeTextArea will render a textarea ElementTypeTextArea = "textarea" // ElementTypeKeyValueMap will render inputs to add arbitrary key-value pairs ElementTypeKeyValueMap = "key_value_map" )
View Source
const ( // InputTypeText will render a text field in the frontend InputTypeText = "text" // InputTypePassword will render a password field in the frontend InputTypePassword = "password" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ElementType ¶
type ElementType string
ElementType is the type of element that can be rendered in the frontend.
type InputType ¶
type InputType string
InputType is the type of input that can be rendered in the frontend.
type NotifierOption ¶
type NotifierOption struct { Element ElementType `json:"element"` InputType InputType `json:"inputType"` Label string `json:"label"` Description string `json:"description"` Placeholder string `json:"placeholder"` PropertyName string `json:"propertyName"` SelectOptions []SelectOption `json:"selectOptions"` ShowWhen ShowWhen `json:"showWhen"` Required bool `json:"required"` ValidationRule string `json:"validationRule"` Secure bool `json:"secure"` DependsOn string `json:"dependsOn"` }
NotifierOption holds information about options specific for the NotifierPlugin.
type NotifierPlugin ¶
type NotifierPlugin struct { Type string `json:"type"` Name string `json:"name"` Heading string `json:"heading"` Description string `json:"description"` Info string `json:"info"` Options []NotifierOption `json:"options"` }
NotifierPlugin holds meta information about a notifier.
func GetAvailableNotifiers ¶
func GetAvailableNotifiers() []*NotifierPlugin
GetAvailableNotifiers returns the metadata of all the notification channels that can be configured.
type SelectOption ¶
SelectOption is a simple type for Options that have dropdown options. Should be used when Element is ElementTypeSelect.
Click to show internal directories.
Click to hide internal directories.