user can change show type and date

This commit is contained in:
2022-11-10 22:05:01 +01:00
parent 3206d25310
commit f0fb7ed4f8
7 changed files with 153 additions and 34 deletions

View File

@@ -3,6 +3,7 @@ import {RouterModule, Routes} from '@angular/router';
import {NewComponent} from './new/new.component';
import {ListComponent} from './list/list.component';
import {ShowComponent} from './show/show.component';
import {EditComponent} from './edit/edit.component';
const routes: Routes = [
{
@@ -14,6 +15,10 @@ const routes: Routes = [
path: 'new',
component: NewComponent,
},
{
path: ':showId/edit',
component: EditComponent,
},
{
path: ':showId',
component: ShowComponent,