aboutsummaryrefslogtreecommitdiffstats
path: root/bug/clocks.go
blob: 5ffa094aaf679e780566422f012f4aa72aa34516 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package bug

import (
	"github.com/MichaelMure/git-bug/repository"
)

// Witnesser will read all the available Bug to recreate the different logical
// clocks
func Witnesser(repo *repository.GitRepo) error {
	for b := range ReadAllLocalBugs(repo) {
		if b.Err != nil {
			return b.Err
		}

		repo.CreateWitness(b.Bug.createTime)
		repo.EditWitness(b.Bug.editTime)
	}

	return nil
}