feat: add manager guide and contextual help

This commit is contained in:
Bastian Wagner
2026-08-02 09:22:16 +02:00
parent 6eab6251d5
commit 0e8ac74116
43 changed files with 1002 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
import { MigrationInterface, QueryRunner } from 'typeorm';
export class AddHelpTextsEnabled1785520800000 implements MigrationInterface {
name = 'AddHelpTextsEnabled1785520800000';
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
'ALTER TABLE "user" ADD "helpTextsEnabled" boolean NOT NULL DEFAULT true',
);
}
public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
'ALTER TABLE "user" DROP COLUMN "helpTextsEnabled"',
);
}
}