Claude/gracious heisenberg m pvkn#46
Merged
Merged
Conversation
Adds PATCH /api/v1/dashboard/interview-count endpoint and Update-Interview-Count MCP tool so users can correct the cumulative interview counter when the automatic detection misses transitions. https://claude.ai/code/session_015kfgrc2oHA881RT3bEYHZ6
Adds interview_count column to job_applications so each application tracks its own count. Dashboard interviewCount now sums across all applications. Removes the per-user UserInterviewMetrics path and the manual update endpoint/MCP tool (editing is now done via the application form). https://claude.ai/code/session_015kfgrc2oHA881RT3bEYHZ6
Qodana for JVM2 new problems were found
View the detailed Qodana reportTo be able to view the detailed Qodana report, you can either:
To get - name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2025.3.2
with:
upload-result: trueContact Qodana teamContact us at qodana-support@jetbrains.com
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new
interviewCountfield to track the number of interviews held for each job application. The change is implemented across the data model, DTOs, database schema, and service layer, and also updates the way interview metrics are calculated for users. The main themes are: adding support for the new field and refactoring interview metrics logic.Support for interview count in job applications:
interviewCountfield to theJobApplicationentity, including getter/setter methods and a corresponding column in the database schema with a default value of 0. [1] [2] [3]ApplicationRequestandApplicationResponseDTOs to include theinterviewCountfield, with appropriate validation and schema annotations. [1] [2] [3]ApplicationMapperandApplicationServiceto map and persist theinterviewCountvalue between DTOs and the entity. [1] [2]McpApplicationToolsmethods to handle the newinterviewCountparameter, defaulting tonullwhere appropriate. [1] [2]Refactoring interview metrics calculation:
InterviewMetricsServiceto calculate the user's total interview count by summing theinterviewCountacross all active job applications, using a new repository method, instead of relying on the deprecatedUserInterviewMetricsentity. [1] [2] [3] [4] [5]