diff options
Diffstat (limited to 'identity/interface.go')
-rw-r--r-- | identity/interface.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/identity/interface.go b/identity/interface.go index 6489efbe..c784a7a6 100644 --- a/identity/interface.go +++ b/identity/interface.go @@ -1,6 +1,7 @@ package identity import ( + "github.com/MichaelMure/git-bug/repository" "github.com/MichaelMure/git-bug/util/lamport" ) @@ -28,6 +29,10 @@ type Interface interface { // Validate check if the Identity data is valid Validate() error + // Write the identity into the Repository. In particular, this ensure that + // the Id is properly set. + Commit(repo repository.Repo) error + // IsProtected return true if the chain of git commits started to be signed. // If that's the case, only signed commit with a valid key for this identity can be added. IsProtected() bool |