tigger преди 2 години
родител
ревизия
83df40ae36
променени са 2 файла, в които са добавени 19 реда и са изтрити 3 реда
  1. 0 0
      src/app/dashboard/dashboard.component.html
  2. 19 3
      src/app/dashboard/dashboard.component.ts

Файловите разлики са ограничени, защото са твърде много
+ 0 - 0
src/app/dashboard/dashboard.component.html


+ 19 - 3
src/app/dashboard/dashboard.component.ts

@@ -1,15 +1,31 @@
-import { Component } from '@angular/core';
+import { Component, OnInit } from '@angular/core';
 import { RouterModule } from '@angular/router';
+import { BaseComponent, untilDestroy } from 'angularlib/base.component';
+import { LoginModule } from 'angularlib/login';
+import { Store } from '@ngxs/store';
+import { LoginService } from 'angularlib/login/login.service';
 
 @Component({
   selector: 'app-dashboard',
   standalone: true,
   imports: [
-    RouterModule
+    RouterModule,
+    LoginModule
   ],
   templateUrl: './dashboard.component.html',
   styleUrl: './dashboard.component.scss'
 })
-export class DashboardComponent {
+export class DashboardComponent extends BaseComponent implements OnInit{
+  constructor(
+    private store: Store,
+    protected loginService: LoginService,
+  ) {
+    super(store);
+  }
+
+  ngOnInit(): void {
+      super.ngOnInit();
+      
+  }
 
 }

Някои файлове не бяха показани, защото твърде много файлове са промени