diff options
Diffstat (limited to 'identity/identity_stub.go')
-rw-r--r-- | identity/identity_stub.go | 20 |
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()") } |