mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-21 02:35:23 -04:00
refactor: replace TypeORM with knex.js
Co-authored-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Erik Michelson <github@erik.michelson.eu>
This commit is contained in:
parent
6e151c8a1b
commit
c0ce00b3f9
242 changed files with 4601 additions and 6871 deletions
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
import { ProviderType } from '@hedgedoc/commons'
|
||||
import { AuthProviderType } from '@hedgedoc/commons'
|
||||
import { HttpMethod } from '../../src/handler-utils/respond-to-matching-request'
|
||||
import { IGNORE_MOTD, MOTD_LOCAL_STORAGE_KEY } from '../../src/components/global-dialogs/motd-modal/local-storage-keys'
|
||||
|
||||
|
@ -22,15 +22,15 @@ export const branding = {
|
|||
|
||||
export const authProviders = [
|
||||
{
|
||||
type: ProviderType.LOCAL
|
||||
type: AuthProviderType.LOCAL
|
||||
},
|
||||
{
|
||||
type: ProviderType.LDAP,
|
||||
type: AuthProviderType.LDAP,
|
||||
identifier: 'test-ldap',
|
||||
providerName: 'Test LDAP'
|
||||
},
|
||||
{
|
||||
type: ProviderType.OIDC,
|
||||
type: AuthProviderType.OIDC,
|
||||
identifier: 'test-oidc',
|
||||
providerName: 'Test OIDC'
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue