Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spring2021-SellPoint
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TDT4140-Group 58
Spring2021-SellPoint
Merge requests
!7
Resolve "Frontend: Vise annonser"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Frontend: Vise annonser"
4-frontend-vise-annonser
into
master
Overview
1
Commits
7
Pipelines
0
Changes
31
1 unresolved thread
Hide all comments
Merged
Tormod Nygård
requested to merge
4-frontend-vise-annonser
into
master
4 years ago
Overview
1
Commits
7
Pipelines
0
Changes
31
1 unresolved thread
Hide all comments
Expand
Closes
#4 (closed)
1
0
Merge request reports
Compare
master
version 1
404290ae
4 years ago
master (base)
and
latest version
latest version
791c859e
7 commits,
4 years ago
version 1
404290ae
6 commits,
4 years ago
31 files
+
495
−
42
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
31
Search (e.g. *.vue) (Ctrl+P)
client/src/app/app-routing.module.ts
+
5
−
1
Options
import
{
NgModule
}
from
'
@angular/core
'
;
import
{
RouterModule
,
Routes
}
from
'
@angular/router
'
;
import
{
PostDetailsComponent
}
from
'
./posts/post-details/post-details.component
'
;
import
{
PostFormComponent
}
from
'
./posts/post-form/post-form.component
'
;
import
{
PostListComponent
}
from
'
./posts/post-list/post-list.component
'
;
const
routes
:
Routes
=
[
{
path
:
'
annonse/ny
'
,
component
:
PostFormComponent
}
{
path
:
'
annonse/ny
'
,
component
:
PostFormComponent
},
{
path
:
'
annonse
'
,
component
:
PostListComponent
},
{
path
:
'
annonse/:id
'
,
component
:
PostDetailsComponent
}
];
@
NgModule
({
Loading