Add new components for AI and tutorials, update routing, and enhance file upload functionality

This commit is contained in:
liosha84
2025-08-04 10:38:46 +03:00
parent 18c6906637
commit 483d029952
206 changed files with 2362 additions and 1199 deletions
@@ -1,6 +1,6 @@
import {Component, CUSTOM_ELEMENTS_SCHEMA} from '@angular/core';
import {Tutorial} from '../../models/tutorial.model';
import {TutorialService} from '../../services/tutorial.service';
import {MatCard, MatCardContent, MatCardHeader} from '@angular/material/card';
import {MarkdownComponent} from 'ngx-markdown';
import {authInterceptorProviders} from '../../helpers/auth.interceptor';
@@ -26,9 +26,9 @@ import {CustomHttpInterceptor} from '../../helpers/custom-http-interceptor';
})
export class TutorialsComponent {
tutorials?: Tutorial[];
/*
constructor(private tutorialService: TutorialService) {
this.retrieveTutorials();
// this.retrieveTutorials();
}
// ngOnInit(): void {
@@ -45,5 +45,5 @@ export class TutorialsComponent {
console.log(error);
}
);
}
}*/
}