forked from Gitlink/gitea-1120-rc1
19 lines
342 B
Go
19 lines
342 B
Go
package models
|
|
|
|
import "code.gitea.io/gitea/modules/timeutil"
|
|
|
|
type TimestampOptions struct {
|
|
Start timeutil.TimeStamp
|
|
End timeutil.TimeStamp
|
|
}
|
|
|
|
func (opts *TimestampOptions) setDefaultValues() {
|
|
if opts.Start <= 0 {
|
|
opts.Start = timeutil.TimeStampNow() - 365*24*60*60
|
|
}
|
|
|
|
if opts.End <= 0 {
|
|
opts.End = timeutil.TimeStampNow()
|
|
}
|
|
}
|