From 328a4e5abf3ec8ea41f89575fcfb83cf9f086c80 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sun, 3 Feb 2019 19:55:35 +0100 Subject: identity: wip push/pull --- identity/identity_stub.go | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'identity/identity_stub.go') 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()") } -- cgit