Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update prisma.md #2989

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

medmahmoudjoud
Copy link

@medmahmoudjoud medmahmoudjoud commented Mar 8, 2024

PR Checklist

Please check if your PR fulfills the following requirements:

PR Type

What kind of change does this PR introduce?

  • Bugfix
  • Feature
  • Code style update (formatting, local variables)
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • Docs
  • Other... Please describe:

What is the current behavior?

Issue Number: N/A

What is the new behavior?

changing the post creation unstead of authorEmail i fix it to use authorId

Does this PR introduce a breaking change?

No

Other information

What?
This pull request modifies the post creation process to utilize authorId instead of authorEmail for associating posts with their authors.

Why?
The initial implementation encountered errors when using authorEmail due to its inability to directly associate with the User entity. By switching to authorId, we ensure a direct and efficient connection between posts and users, resolving the error and maintaining data integrity.

How?
Updated post creation logic to reference authorId for associating posts with authors.
Removed usage of authorEmail in post creation to prevent errors and improve data consistency.
Testing?
Conducted thorough testing to verify correct operation of post creation with both existing and new users.
Ensured that the updated logic does not introduce regressions and maintains expected behavior.
async createDraft(
@Body() postData: { title: string; content?: string; authorEmail: string },
@Body() postData: { title: string; content?: string; authorId: number },
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
@Body() postData: { title: string; content?: string; authorId: number },
@Body() postData: { authorId: number; title: string; content?: string },

): Promise<PostModel> {
const { title, content, authorEmail } = postData;
const { title, content, authorId } = postData;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
const { title, content, authorId } = postData;
const { authorId, title, content } = postData;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants