use existing auth db method for identifier creation
[squeep-authentication-module] / lib / authenticator.js
index 7390db5d8803c8271e0cbc32c254e3198d057df0..36c1574b507c223fe380a35ab6f0eb991de085e4 100644 (file)
@@ -33,7 +33,7 @@ class Authenticator {
    * @property {(DBContextExec) => Promise<any>} context
    * @property {(dbCtx: any, identifier: String) => Promise<AuthInfo> } authenticationGet
    * @property {(dbCtx: any, identifier: String) => Promise<void>} authenticationSuccess
-   * @property {(dbCtx: any, identifier: String, credential: String, otpKey: String=) => Promise<void>} authenticationInsertIdentifier
+   * @property {(dbCtx: any, identifier: String, credential: String, otpKey: String=) => Promise<void>} authenticationUpsert
    * @property {(dbCtx: any, identifier: String, otpKey: String) => Promise<void>} authenticationUpdateOTPKey
    * @property {(dbCtx: any, identifier: String, credential: AuthInfo) => Promise<void>} authenticationUpdateCredential
    */
@@ -117,7 +117,7 @@ class Authenticator {
     const _scope = _fileScope('createIdentifier');
     try {
       const secureCredential = await this._secureCredential(credential);
-      await this.db.authenticationInsertIdentifier(dbCtx, identifier, secureCredential, otpKey);
+      await this.db.authenticationUpsert(dbCtx, identifier, secureCredential, otpKey);
     } catch (e) {
       this.logger.error(_scope, 'failed', { error: e, identifier });
       throw e;