You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
355 B
16 lines
355 B
package models
|
|
|
|
type HelpFlags1 uint64
|
|
|
|
const (
|
|
HelpFlagGettingStartedPanelDismissed HelpFlags1 = 1 << iota
|
|
HelpFlagDashboardHelp1
|
|
)
|
|
|
|
func (f HelpFlags1) HasFlag(flag HelpFlags1) bool { return f&flag != 0 }
|
|
func (f *HelpFlags1) AddFlag(flag HelpFlags1) { *f |= flag }
|
|
|
|
type SetUserHelpFlagCommand struct {
|
|
HelpFlags1 HelpFlags1
|
|
UserId int64
|
|
}
|
|
|