Commit b56aeedb authored by Emiliano Balbuena's avatar Emiliano Balbuena

(wip): Donate placeholder

1 merge request!459WIP: (feat): Minds Pro
Pipeline #73001880 running with stages
<h1>Donate</h1>
import { ChangeDetectionStrategy, Component } from '@angular/core';
@Component({
selector: 'm-pro--channel-donate',
templateUrl: 'donate.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class ProChannelDonateComponent {
}
......@@ -10,6 +10,7 @@ import { ProChannelComponent } from "./channel/channel.component";
import { ProChannelSignupComponent } from "./channel/signup/signup.component";
import { MindsFormsModule } from "../forms/forms.module";
import { ProChannelListComponent } from "./channel/list/list.component";
import { ProChannelDonateComponent } from './channel/donate/donate.component';
const routes: Routes = [
{
......@@ -20,6 +21,7 @@ const routes: Routes = [
path: ':username', component: ProChannelComponent,
children: [
{ path: '', redirectTo: 'articles', pathMatch: 'full' },
{ path: 'donate', component: ProChannelDonateComponent },
{ path: 'signup', component: ProChannelSignupComponent },
{ path: ':type', component: ProChannelListComponent },
]
......@@ -46,6 +48,7 @@ const routes: Routes = [
ProChannelComponent,
ProChannelSignupComponent,
ProChannelListComponent,
ProChannelDonateComponent,
],
exports: [],
entryComponents: [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment