mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 07:09:40 +02:00
- 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>
12 lines
467 B
TypeScript
12 lines
467 B
TypeScript
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, JwtAuthGuard, OptionalAuthGuard],
|
|
exports: [FeedbackService],
|
|
})
|
|
export class FeedbackModule {}
|