1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-18 08:26:45 +02:00
woodpecker/server/web/opts.go

38 lines
846 B
Go
Raw Normal View History

2017-09-20 21:29:57 +02:00
package web
import "time"
// Options defines website handler options.
type Options struct {
sync time.Duration
path string
docs string
}
// Option configures the website handler.
type Option func(*Options)
2018-02-15 10:39:59 +02:00
// WithSync configures the website handler with the duration value
2017-09-20 21:29:57 +02:00
// used to determine if the user account requires synchronization.
func WithSync(d time.Duration) Option {
return func(o *Options) {
o.sync = d
}
}
2018-02-15 10:39:59 +02:00
// WithDir configures the website handler with the directory value
2017-09-20 21:29:57 +02:00
// used to serve the website from the local filesystem.
func WithDir(s string) Option {
return func(o *Options) {
o.path = s
}
}
2018-02-15 10:39:59 +02:00
// WithDocs configures the website handler with the documentation
2017-09-20 21:29:57 +02:00
// website address, which should be included in the user interface.
func WithDocs(s string) Option {
return func(o *Options) {
o.docs = s
}
}