Skip to content
Snippets Groups Projects
Commit 27932bfd authored by Kawtar Laariche's avatar Kawtar Laariche
Browse files

#19: remove onboarding, view download and reply to comments pages

parent 3cfc5407
No related branches found
No related tags found
No related merge requests found
Showing
with 0 additions and 117 deletions
...@@ -20,12 +20,9 @@ import { ManageLicenseComponent } from './features/dashboard/manage-license/mana ...@@ -20,12 +20,9 @@ import { ManageLicenseComponent } from './features/dashboard/manage-license/mana
import { PublishRequestComponent } from './features/dashboard/publish-request/publish-request.component'; import { PublishRequestComponent } from './features/dashboard/publish-request/publish-request.component';
import { QAndAComponent } from './features/dashboard/q-and-a/q-and-a.component'; import { QAndAComponent } from './features/dashboard/q-and-a/q-and-a.component';
import { ModelManagementComponent } from './shared/components/model-management/model-management.component'; import { ModelManagementComponent } from './shared/components/model-management/model-management.component';
import { OnBoardingPageComponent } from './shared/components/on-boarding-page/on-boarding-page.component';
import { ShareWithTeamPageComponent } from './shared/components/share-with-team-page/share-with-team-page.component'; import { ShareWithTeamPageComponent } from './shared/components/share-with-team-page/share-with-team-page.component';
import { PublishToMarketplacePageComponent } from './shared/components/publish-to-marketplace-page/publish-to-marketplace-page.component'; import { PublishToMarketplacePageComponent } from './shared/components/publish-to-marketplace-page/publish-to-marketplace-page.component';
import { ViewDownloadsPageComponent } from './shared/components/view-downloads-page/view-downloads-page.component';
import { ManagePublisherAuthorsPageComponent } from './shared/components/manage-publisher-authors-page/manage-publisher-authors-page.component'; import { ManagePublisherAuthorsPageComponent } from './shared/components/manage-publisher-authors-page/manage-publisher-authors-page.component';
import { ReplyToCommentsPageComponent } from './shared/components/reply-to-comments-page/reply-to-comments-page.component';
import { DeleteModelPageComponent } from './shared/components/delete-model-page/delete-model-page.component'; import { DeleteModelPageComponent } from './shared/components/delete-model-page/delete-model-page.component';
const routeConfig: Routes = [ const routeConfig: Routes = [
...@@ -126,7 +123,6 @@ const routeConfig: Routes = [ ...@@ -126,7 +123,6 @@ const routeConfig: Routes = [
path: 'manageMyModel/solutionId/:solutionId/revisionId/:revisionId', path: 'manageMyModel/solutionId/:solutionId/revisionId/:revisionId',
component: ModelManagementComponent, component: ModelManagementComponent,
children: [ children: [
{ path: 'onBoarding', component: OnBoardingPageComponent },
{ path: 'shareWithTeam', component: ShareWithTeamPageComponent }, { path: 'shareWithTeam', component: ShareWithTeamPageComponent },
{ {
path: 'publisherAuthors', path: 'publisherAuthors',
...@@ -136,8 +132,6 @@ const routeConfig: Routes = [ ...@@ -136,8 +132,6 @@ const routeConfig: Routes = [
path: 'publishModel', path: 'publishModel',
component: PublishToMarketplacePageComponent, component: PublishToMarketplacePageComponent,
}, },
{ path: 'viewDownloads', component: ViewDownloadsPageComponent },
{ path: 'replyToComments', component: ReplyToCommentsPageComponent },
{ path: 'deleteModel', component: DeleteModelPageComponent }, { path: 'deleteModel', component: DeleteModelPageComponent },
{ {
path: '', path: '',
......
<div class="workflow-right-header workflow-header">On-boarding</div>
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { OnBoardingPageComponent } from './on-boarding-page.component';
describe('OnBoardingPageComponent', () => {
let component: OnBoardingPageComponent;
let fixture: ComponentFixture<OnBoardingPageComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [OnBoardingPageComponent]
})
.compileComponents();
fixture = TestBed.createComponent(OnBoardingPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
@Component({
selector: 'gp-on-boarding-page',
standalone: true,
imports: [CommonModule],
templateUrl: './on-boarding-page.component.html',
styleUrl: './on-boarding-page.component.scss'
})
export class OnBoardingPageComponent {
}
<div class="workflow-right-header workflow-header">Reply to Comments</div>
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ReplyToCommentsPageComponent } from './reply-to-comments-page.component';
describe('ReplyToCommentsPageComponent', () => {
let component: ReplyToCommentsPageComponent;
let fixture: ComponentFixture<ReplyToCommentsPageComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ReplyToCommentsPageComponent]
})
.compileComponents();
fixture = TestBed.createComponent(ReplyToCommentsPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
@Component({
selector: 'gp-reply-to-comments-page',
standalone: true,
imports: [CommonModule],
templateUrl: './reply-to-comments-page.component.html',
styleUrl: './reply-to-comments-page.component.scss'
})
export class ReplyToCommentsPageComponent {
}
<div class="workflow-right-header workflow-header">View Downloads</div>
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ViewDownloadsPageComponent } from './view-downloads-page.component';
describe('ViewDownloadsPageComponent', () => {
let component: ViewDownloadsPageComponent;
let fixture: ComponentFixture<ViewDownloadsPageComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ViewDownloadsPageComponent]
})
.compileComponents();
fixture = TestBed.createComponent(ViewDownloadsPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
@Component({
selector: 'gp-view-downloads-page',
standalone: true,
imports: [CommonModule],
templateUrl: './view-downloads-page.component.html',
styleUrl: './view-downloads-page.component.scss'
})
export class ViewDownloadsPageComponent {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment