mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-20 02:05:21 -04:00
refactor(auth): rename identity-module to auth-module
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
This commit is contained in:
parent
ff3e34261e
commit
b24f8b0a76
46 changed files with 78 additions and 81 deletions
|
@ -15,8 +15,8 @@ import {
|
|||
} from 'class-validator';
|
||||
import { URL } from 'url';
|
||||
|
||||
import { ProviderType } from '../auth/provider-type.enum';
|
||||
import { GuestAccess } from '../config/guest_access.enum';
|
||||
import { ProviderType } from '../identity/provider-type.enum';
|
||||
import { ServerVersion } from '../monitoring/server-status.dto';
|
||||
import { BaseDto } from '../utils/base.dto.';
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@ import { ConfigModule, registerAs } from '@nestjs/config';
|
|||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { URL } from 'url';
|
||||
|
||||
import { ProviderType } from '../auth/provider-type.enum';
|
||||
import { AppConfig } from '../config/app.config';
|
||||
import { AuthConfig } from '../config/auth.config';
|
||||
import { CustomizationConfig } from '../config/customization.config';
|
||||
|
@ -15,7 +16,6 @@ import { ExternalServicesConfig } from '../config/external-services.config';
|
|||
import { GuestAccess } from '../config/guest_access.enum';
|
||||
import { Loglevel } from '../config/loglevel.enum';
|
||||
import { NoteConfig } from '../config/note.config';
|
||||
import { ProviderType } from '../identity/provider-type.enum';
|
||||
import { LoggerModule } from '../logger/logger.module';
|
||||
import { getServerVersionFromPackageJson } from '../utils/serverVersion';
|
||||
import { FrontendConfigService } from './frontend-config.service';
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
import { Inject, Injectable } from '@nestjs/common';
|
||||
import { URL } from 'url';
|
||||
|
||||
import { ProviderType } from '../auth/provider-type.enum';
|
||||
import appConfiguration, { AppConfig } from '../config/app.config';
|
||||
import authConfiguration, { AuthConfig } from '../config/auth.config';
|
||||
import customizationConfiguration, {
|
||||
|
@ -15,7 +16,6 @@ import externalServicesConfiguration, {
|
|||
ExternalServicesConfig,
|
||||
} from '../config/external-services.config';
|
||||
import noteConfiguration, { NoteConfig } from '../config/note.config';
|
||||
import { ProviderType } from '../identity/provider-type.enum';
|
||||
import { ConsoleLoggerService } from '../logger/console-logger.service';
|
||||
import { getServerVersionFromPackageJson } from '../utils/serverVersion';
|
||||
import {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue