summaryrefslogtreecommitdiff
path: root/internal/mocks
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2022-04-09 17:13:19 +1000
committerGitHub <noreply@github.com>2022-04-09 17:13:19 +1000
commit5a0a15f3777df952445e95bef1e6e12265b2829b (patch)
treeea016d329a55bf022728608738815632b156b4c1 /internal/mocks
parente7112bfbd640b1fc45b36f6296faac7d475bc119 (diff)
feat(commands): user opaque identifiers commands (#3144)
Add commands for handling user opaque identifiers.
Diffstat (limited to 'internal/mocks')
-rw-r--r--internal/mocks/storage.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/internal/mocks/storage.go b/internal/mocks/storage.go
index 4bcea9add..9371fbe2d 100644
--- a/internal/mocks/storage.go
+++ b/internal/mocks/storage.go
@@ -361,6 +361,21 @@ func (mr *MockStorageMockRecorder) LoadUserOpaqueIdentifierBySignature(arg0, arg
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LoadUserOpaqueIdentifierBySignature", reflect.TypeOf((*MockStorage)(nil).LoadUserOpaqueIdentifierBySignature), arg0, arg1, arg2, arg3)
}
+// LoadUserOpaqueIdentifiers mocks base method.
+func (m *MockStorage) LoadUserOpaqueIdentifiers(arg0 context.Context) ([]model.UserOpaqueIdentifier, error) {
+ m.ctrl.T.Helper()
+ ret := m.ctrl.Call(m, "LoadUserOpaqueIdentifiers", arg0)
+ ret0, _ := ret[0].([]model.UserOpaqueIdentifier)
+ ret1, _ := ret[1].(error)
+ return ret0, ret1
+}
+
+// LoadUserOpaqueIdentifiers indicates an expected call of LoadUserOpaqueIdentifiers.
+func (mr *MockStorageMockRecorder) LoadUserOpaqueIdentifiers(arg0 interface{}) *gomock.Call {
+ mr.mock.ctrl.T.Helper()
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LoadUserOpaqueIdentifiers", reflect.TypeOf((*MockStorage)(nil).LoadUserOpaqueIdentifiers), arg0)
+}
+
// LoadWebauthnDevices mocks base method.
func (m *MockStorage) LoadWebauthnDevices(arg0 context.Context, arg1, arg2 int) ([]model.WebauthnDevice, error) {
m.ctrl.T.Helper()