mirror of
https://github.com/lone-cloud/prism
synced 2026-06-03 08:43:10 -07:00
29 lines
527 B
Go
29 lines
527 B
Go
package server
|
|
|
|
import "html/template"
|
|
|
|
type AppListItem struct {
|
|
AppName string
|
|
Channel string
|
|
ChannelBadge string
|
|
ChannelConfigured bool
|
|
Tooltip string
|
|
Hostname string
|
|
ChannelOptions []SelectOption
|
|
}
|
|
|
|
type SelectOption struct {
|
|
Value string
|
|
Label string
|
|
Selected bool
|
|
}
|
|
|
|
type IntegrationData struct {
|
|
Name string
|
|
StatusClass string
|
|
StatusText string
|
|
StatusTooltip string
|
|
Content template.HTML
|
|
Open bool
|
|
PollAttrs string
|
|
}
|