90f540139a
1. Pass session.Language to MatchJobRequest in cv-search-job so the LLM uses the correct language-specific prompt for job titles and summaries. 2. Replace hardcoded "Manual job description" with a template-driven label (email.match.manual-job-label) seeded in English and Romanian, so the match email subject and Job row reflect the user's language. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
44 lines
1.7 KiB
C#
44 lines
1.7 KiB
C#
using Email.Data;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Email.Data.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddManualJobLabelTemplate : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.InsertData(
|
|
schema: MigrationConstants.SchemaName,
|
|
table: "Templates",
|
|
columns: ["Key", "Language", "Value", "Description"],
|
|
values: ["email.match.manual-job-label", "en", "Manual job description", "Label used in the match email subject and body when no job URL was provided"]);
|
|
|
|
migrationBuilder.InsertData(
|
|
schema: MigrationConstants.SchemaName,
|
|
table: "Templates",
|
|
columns: ["Key", "Language", "Value", "Description"],
|
|
values: ["email.match.manual-job-label", "ro", "Descriere manuală a jobului", "Etichetă folosită în subiectul și corpul emailului când nu a fost furnizat un URL de job"]);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DeleteData(
|
|
schema: MigrationConstants.SchemaName,
|
|
table: "Templates",
|
|
keyColumns: ["Key", "Language"],
|
|
keyValues: ["email.match.manual-job-label", "en"]);
|
|
|
|
migrationBuilder.DeleteData(
|
|
schema: MigrationConstants.SchemaName,
|
|
table: "Templates",
|
|
keyColumns: ["Key", "Language"],
|
|
keyValues: ["email.match.manual-job-label", "ro"]);
|
|
}
|
|
}
|
|
}
|