Skip to content

Commit

Permalink
add stubs for more parts #1127
Browse files Browse the repository at this point in the history
  • Loading branch information
syjer committed Dec 12, 2022
1 parent 1d73b23 commit b3db0fe
Show file tree
Hide file tree
Showing 10 changed files with 58 additions and 1 deletion.
11 changes: 10 additions & 1 deletion frontend-admin/src/app/dashboard/dashboard.module.ts
Expand Up @@ -10,6 +10,9 @@ import {OrganizationConfigurationComponent} from './organization-configuration/o
import {provideSvgIconsConfig, SvgIconComponent} from '@ngneat/svg-icon';
import { TranslateModule } from '@ngx-translate/core'
import { ICON_CONFIG } from "../shared/icons";
import { SubscriptionsComponent } from './subscriptions/subscriptions.component';
import { OrganizationInfoComponent } from './organization-info/organization-info.component';
import { GroupsComponent } from './groups/groups.component';

@NgModule({
imports: [
Expand All @@ -19,14 +22,20 @@ import { ICON_CONFIG } from "../shared/icons";
RouterModule.forChild([
{ path: '', component: DashboardComponent},
{ path: '', component: DashboardMenuComponent, outlet: 'sidebar-content'},
{ path: 'configuration', component: OrganizationConfigurationComponent }
{ path: 'configuration', component: OrganizationConfigurationComponent },
{ path: 'subscriptions', component: SubscriptionsComponent },
{ path: 'organization-info', component: OrganizationInfoComponent },
{ path: 'groups', component: GroupsComponent },
]),
SvgIconComponent,
],
declarations: [
DashboardComponent,
DashboardMenuComponent,
OrganizationConfigurationComponent,
SubscriptionsComponent,
OrganizationInfoComponent,
GroupsComponent,
],
providers: [
OrganizationService,
Expand Down
@@ -0,0 +1 @@
<p>groups works!</p>
Empty file.
15 changes: 15 additions & 0 deletions frontend-admin/src/app/dashboard/groups/groups.component.ts
@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-groups',
templateUrl: './groups.component.html',
styleUrls: ['./groups.component.scss']
})
export class GroupsComponent implements OnInit {

constructor() { }

ngOnInit(): void {
}

}
@@ -0,0 +1 @@
<p>organization-info works!</p>
Empty file.
@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-organization-info',
templateUrl: './organization-info.component.html',
styleUrls: ['./organization-info.component.scss']
})
export class OrganizationInfoComponent implements OnInit {

constructor() { }

ngOnInit(): void {
}

}
@@ -0,0 +1 @@
<p>subscriptions works!</p>
Empty file.
@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-subscriptions',
templateUrl: './subscriptions.component.html',
styleUrls: ['./subscriptions.component.scss']
})
export class SubscriptionsComponent implements OnInit {

constructor() { }

ngOnInit(): void {
}

}

0 comments on commit b3db0fe

Please sign in to comment.