mirror of https://github.com/keeweb/keeweb
renamed external model to otp-device
parent
92da783e82
commit
68010076f9
@ -1,8 +0,0 @@
|
||||
import { Collection } from 'framework/collection';
|
||||
import { ExternalEntryModel } from 'models/external/external-entry-model';
|
||||
|
||||
class ExternalEntryCollection extends Collection {
|
||||
static model = ExternalEntryModel;
|
||||
}
|
||||
|
||||
export { ExternalEntryCollection };
|
@ -1,21 +0,0 @@
|
||||
import { ExternalDeviceModel } from 'models/external/external-device-model';
|
||||
|
||||
class ExternalOtpDeviceModel extends ExternalDeviceModel {
|
||||
open(callback) {
|
||||
throw 'Not implemented';
|
||||
}
|
||||
|
||||
cancelOpen() {
|
||||
throw 'Not implemented';
|
||||
}
|
||||
|
||||
close(callback) {
|
||||
throw 'Not implemented';
|
||||
}
|
||||
|
||||
getOtp(callback) {
|
||||
throw 'Not implemented';
|
||||
}
|
||||
}
|
||||
|
||||
export { ExternalOtpDeviceModel };
|
@ -0,0 +1,8 @@
|
||||
import { Collection } from 'framework/collection';
|
||||
import { OtpDeviceEntryModel } from './otp-device-entry-model';
|
||||
|
||||
class OtpDeviceEntryCollection extends Collection {
|
||||
static model = OtpDeviceEntryModel;
|
||||
}
|
||||
|
||||
export { OtpDeviceEntryCollection };
|
Loading…
Reference in New Issue