fix: Remove test auth callback plugins.

This commit is contained in:
Sam 2022-05-13 11:36:17 +02:00
parent 60a048e98b
commit b22e4a150f
No known key found for this signature in database
GPG Key ID: D004126FCD1A6DF0
3 changed files with 2 additions and 20 deletions

View File

@ -1,17 +0,0 @@
/*
Copyright 2020-2022 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
export { default as SessionCallback } from './callbacks/LowdefySessionAuthCallback.js';

View File

@ -16,12 +16,10 @@
/* eslint-disable import/namespace */
import * as callbacks from './auth/callbacks.js';
import * as providers from './auth/providers.js';
export default {
auth: {
callbacks: Object.keys(callbacks),
providers: Object.keys(providers),
},
};

View File

@ -29,7 +29,8 @@ export default async function handler(req, res) {
const apiContext = await createApiContext({
buildDirectory: './build',
connections,
logger: console,
// logger: console,
logger: { debug: () => {} },
operators,
secrets: getSecretsFromEnv(),
session,