1
0

74647: Generator meta

This commit is contained in:
Kristof De Langhe
2020-12-07 16:42:33 +01:00
parent 32a29c4a17
commit be05647e5d
8 changed files with 209 additions and 2 deletions

View File

@@ -172,6 +172,8 @@ import { EndUserAgreementCookieGuard } from './end-user-agreement/end-user-agree
import { EndUserAgreementService } from './end-user-agreement/end-user-agreement.service';
import { SiteRegisterGuard } from './data/feature-authorization/feature-authorization-guard/site-register.guard';
import { UsageReport } from './statistics/models/usage-report.model';
import { RootDataService } from './data/root-data.service';
import { Root } from './data/root.model';
/**
* When not in production, endpoint responses can be mocked for testing purposes
@@ -302,6 +304,7 @@ const PROVIDERS = [
EndUserAgreementCurrentUserGuard,
EndUserAgreementCookieGuard,
EndUserAgreementService,
RootDataService,
// register AuthInterceptor as HttpInterceptor
{
provide: HTTP_INTERCEPTORS,
@@ -374,6 +377,7 @@ export const models =
VocabularyEntryDetail,
ConfigurationProperty,
UsageReport,
Root,
];
@NgModule({