aboutsummaryrefslogtreecommitdiffstats
path: root/identity/identity_stub.go
diff options
context:
space:
mode:
authorMichael Muré <michael.mure@consensys.net>2019-02-03 19:55:35 +0100
committerMichael Muré <batolettre@gmail.com>2019-03-01 22:40:23 +0100
commit328a4e5abf3ec8ea41f89575fcfb83cf9f086c80 (patch)
tree29ce99a1cb244badd74acb61d2b251e56fd1643f /identity/identity_stub.go
parent56c6147eb6012252cf0b723b9eb6d1e841fc2f94 (diff)
downloadgit-bug-328a4e5abf3ec8ea41f89575fcfb83cf9f086c80.tar.gz
identity: wip push/pull
Diffstat (limited to 'identity/identity_stub.go')
-rw-r--r--identity/identity_stub.go20
1 files changed, 10 insertions, 10 deletions
diff --git a/identity/identity_stub.go b/identity/identity_stub.go
index 0163e9d4..6788ce33 100644
--- a/identity/identity_stub.go
+++ b/identity/identity_stub.go
@@ -45,41 +45,41 @@ func (i *IdentityStub) Id() string {
}
func (IdentityStub) Name() string {
- panic("identities needs to be properly loaded with identity.Read()")
+ panic("identities needs to be properly loaded with identity.ReadLocal()")
}
func (IdentityStub) Email() string {
- panic("identities needs to be properly loaded with identity.Read()")
+ panic("identities needs to be properly loaded with identity.ReadLocal()")
}
func (IdentityStub) Login() string {
- panic("identities needs to be properly loaded with identity.Read()")
+ panic("identities needs to be properly loaded with identity.ReadLocal()")
}
func (IdentityStub) AvatarUrl() string {
- panic("identities needs to be properly loaded with identity.Read()")
+ panic("identities needs to be properly loaded with identity.ReadLocal()")
}
func (IdentityStub) Keys() []Key {
- panic("identities needs to be properly loaded with identity.Read()")
+ panic("identities needs to be properly loaded with identity.ReadLocal()")
}
func (IdentityStub) ValidKeysAtTime(time lamport.Time) []Key {
- panic("identities needs to be properly loaded with identity.Read()")
+ panic("identities needs to be properly loaded with identity.ReadLocal()")
}
func (IdentityStub) DisplayName() string {
- panic("identities needs to be properly loaded with identity.Read()")
+ panic("identities needs to be properly loaded with identity.ReadLocal()")
}
func (IdentityStub) Validate() error {
- panic("identities needs to be properly loaded with identity.Read()")
+ panic("identities needs to be properly loaded with identity.ReadLocal()")
}
func (IdentityStub) Commit(repo repository.Repo) error {
- panic("identities needs to be properly loaded with identity.Read()")
+ panic("identities needs to be properly loaded with identity.ReadLocal()")
}
func (IdentityStub) IsProtected() bool {
- panic("identities needs to be properly loaded with identity.Read()")
+ panic("identities needs to be properly loaded with identity.ReadLocal()")
}