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

Implement Tags for Projects #9

Open
beriniwlew opened this issue Mar 31, 2023 · 0 comments
Open

Implement Tags for Projects #9

beriniwlew opened this issue Mar 31, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@beriniwlew
Copy link
Contributor

Description:

In Milestone 1, we want to implement a tagging system for projects. This will allow organizations to categorize their projects more effectively and help users discover and explore projects based on their interests.

Requirements:

  1. Create a Tag model with the following attributes:
  • Id (Guid)
  • Name (String) (required, max length: 128)
  1. Create a many-to-many relationship between Tag and Project using an intermediary table ProjectTag with the following attributes:
  • ProjectId (Guid)
  • Project (Project)
  • TagId (Guid)
  • Tag (Tag)
  1. Develop a UI for organizations to:
  • Add, edit, and remove tags associated with their projects
  • View tags associated with their projects
  1. Implement backend logic to handle CRUD operations for tags.

Acceptance Criteria:

  • Tag model is created with the required attributes.
  • Many-to-many relationships are established between Tag and Project.
  • Organizations can add, edit, and remove tags associated with their projects.
  • Backend logic handles CRUD operations for tags.

Notes:

  • Please ensure that the UI design is consistent with the overall application design.
  • Make sure to properly handle user permissions when allowing access to tags.
  • Don't forget to write tests to verify the implemented functionality.
@beriniwlew beriniwlew added the enhancement New feature or request label Mar 31, 2023
@beriniwlew beriniwlew moved this to Todo in Impact Space App Apr 2, 2023
@beriniwlew beriniwlew moved this from Todo to In Progress in Impact Space App Apr 2, 2023
@beriniwlew beriniwlew moved this from In Progress to Todo in Impact Space App Apr 3, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Status: Todo
Development

No branches or pull requests

1 participant