MCPcopy Create free account
hub / github.com/MMadmer/EpicAssetsNotifyBot / GuildConfig

Struct GuildConfig

internal/model/types.go:88–97  ·  view source on GitHub ↗

GuildConfig is the active per-guild notification configuration.

Source from the content-addressed store, hash-verified

86
87// GuildConfig is the active per-guild notification configuration.
88type GuildConfig struct {
89 GuildID int64 `json:"guild_id"`
90 ChannelID *int64 `json:"channel_id,omitempty"`
91 ThreadID *int64 `json:"thread_id,omitempty"`
92 ShownAssets bool `json:"shown_assets"`
93 Locale string `json:"locale"`
94 MentionRoleID *int64 `json:"mention_role_id,omitempty"`
95 Enabled bool `json:"enabled"`
96 IncludeImages bool `json:"include_images"`
97}
98
99// UserProfile stores per-user DM notification preferences.
100type UserProfile struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected