77350: wip

This commit is contained in:
lotte
2021-03-02 18:22:02 +01:00
committed by Art Lowel
parent 1c4763b409
commit cddbdbfed7
21 changed files with 242 additions and 25 deletions

View File

@@ -5,6 +5,7 @@ import { CreateProfileComponent } from './create-profile/create-profile.componen
import { ItemPageResolver } from '../+item-page/item-page.resolver';
import { RegistrationResolver } from '../register-email-form/registration.resolver';
import { EndUserAgreementCookieGuard } from '../core/end-user-agreement/end-user-agreement-cookie.guard';
import { ThemedCreateProfileComponent } from './create-profile/themed-create-profile.component';
@NgModule({
imports: [
@@ -16,7 +17,7 @@ import { EndUserAgreementCookieGuard } from '../core/end-user-agreement/end-user
},
{
path: ':token',
component: CreateProfileComponent,
component: ThemedCreateProfileComponent,
resolve: {registration: RegistrationResolver},
canActivate: [EndUserAgreementCookieGuard]
}