Bumps the go-modules-updates group in /backend with 5 updates: | Package | From | To | | --- | --- | --- | | [github.com/PuerkitoBio/goquery](https://github.com/PuerkitoBio/goquery) | `1.10.0` | `1.10.1` | | [github.com/go-chi/chi/v5](https://github.com/go-chi/chi) | `5.1.0` | `5.2.0` | | [github.com/go-pkgz/rest](https://github.com/go-pkgz/rest) | `1.19.0` | `1.20.2` | | [golang.org/x/image](https://github.com/golang/image) | `0.22.0` | `0.23.0` | | [golang.org/x/net](https://github.com/golang/net) | `0.31.0` | `0.33.0` | Updates `github.com/PuerkitoBio/goquery` from 1.10.0 to 1.10.1 - [Release notes](https://github.com/PuerkitoBio/goquery/releases) - [Commits](https://github.com/PuerkitoBio/goquery/compare/v1.10.0...v1.10.1) Updates `github.com/go-chi/chi/v5` from 5.1.0 to 5.2.0 - [Release notes](https://github.com/go-chi/chi/releases) - [Changelog](https://github.com/go-chi/chi/blob/master/CHANGELOG.md) - [Commits](https://github.com/go-chi/chi/compare/v5.1.0...v5.2.0) Updates `github.com/go-pkgz/rest` from 1.19.0 to 1.20.2 - [Release notes](https://github.com/go-pkgz/rest/releases) - [Commits](https://github.com/go-pkgz/rest/compare/v1.19.0...v1.20.2) Updates `golang.org/x/image` from 0.22.0 to 0.23.0 - [Commits](https://github.com/golang/image/compare/v0.22.0...v0.23.0) Updates `golang.org/x/net` from 0.31.0 to 0.33.0 - [Commits](https://github.com/golang/net/compare/v0.31.0...v0.33.0) --- updated-dependencies: - dependency-name: github.com/PuerkitoBio/goquery dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-modules-updates - dependency-name: github.com/go-chi/chi/v5 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-modules-updates - dependency-name: github.com/go-pkgz/rest dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-modules-updates - dependency-name: golang.org/x/image dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-modules-updates - dependency-name: golang.org/x/net dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-modules-updates ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
1.3 KiB
Go
43 lines
1.3 KiB
Go
package slack
|
|
|
|
// InputBlock defines data that is used to display user input fields.
|
|
//
|
|
// More Information: https://api.slack.com/reference/block-kit/blocks#input
|
|
type InputBlock struct {
|
|
Type MessageBlockType `json:"type"`
|
|
BlockID string `json:"block_id,omitempty"`
|
|
Label *TextBlockObject `json:"label"`
|
|
Element BlockElement `json:"element"`
|
|
Hint *TextBlockObject `json:"hint,omitempty"`
|
|
Optional bool `json:"optional,omitempty"`
|
|
DispatchAction bool `json:"dispatch_action,omitempty"`
|
|
}
|
|
|
|
// BlockType returns the type of the block
|
|
func (s InputBlock) BlockType() MessageBlockType {
|
|
return s.Type
|
|
}
|
|
|
|
// NewInputBlock returns a new instance of an input block
|
|
func NewInputBlock(blockID string, label, hint *TextBlockObject, element BlockElement) *InputBlock {
|
|
return &InputBlock{
|
|
Type: MBTInput,
|
|
BlockID: blockID,
|
|
Label: label,
|
|
Element: element,
|
|
Hint: hint,
|
|
}
|
|
}
|
|
|
|
// WithOptional sets the optional flag on the input block
|
|
func (s *InputBlock) WithOptional(optional bool) *InputBlock {
|
|
s.Optional = optional
|
|
return s
|
|
}
|
|
|
|
// WithDispatchAction sets the dispatch action flag on the input block
|
|
func (s *InputBlock) WithDispatchAction(dispatchAction bool) *InputBlock {
|
|
s.DispatchAction = dispatchAction
|
|
return s
|
|
}
|