mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:21:09 +02:00
feat: integrate shared PageHeader and ProfilePage across all web apps
- Add backHref prop to PageHeader component for back navigation - Integrate PageHeader in Chat app (archive, documents, spaces, templates) - Integrate PageHeader in Picture app (board, generate, profile, tags, upload) - Integrate PageHeader in Manacore app (dashboard, organizations, teams) - Integrate PageHeader in Presi app (home, profile) - Integrate PageHeader in Zitare app (authors, lists) - Update Picture, Manadeck, Presi profiles to use shared ProfilePage - Create new profile pages for Manacore and Zitare using shared ProfilePage - Add profile navigation links to Manacore and Zitare - Add Mana subscription pages to Presi and Zitare - Fix shared-profile-ui tsconfig.json (remove invalid extends) - Add @manacore/shared-profile-ui dependency to all web apps 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
c85cd4556c
commit
9432a73a1f
62 changed files with 1803 additions and 1152 deletions
|
|
@ -1,10 +1,12 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { FeedbackController } from './feedback.controller';
|
||||
import { FeedbackService } from './feedback.service';
|
||||
import { JwtAuthGuard } from '../common/guards/jwt-auth.guard';
|
||||
import { OptionalAuthGuard } from '../common/guards/optional-auth.guard';
|
||||
|
||||
@Module({
|
||||
controllers: [FeedbackController],
|
||||
providers: [FeedbackService],
|
||||
providers: [FeedbackService, JwtAuthGuard, OptionalAuthGuard],
|
||||
exports: [FeedbackService],
|
||||
})
|
||||
export class FeedbackModule {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue