feat: Added notifications outbox to admin panel

This commit is contained in:
2025-05-31 16:57:58 +02:00
parent 86347e254b
commit 375bb1ceb4
21 changed files with 208 additions and 31 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ToolbarService } from './toolbar.service';
describe('ToolbarService', () => {
let service: ToolbarService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ToolbarService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});