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

Room type should be an enum #81

Open
ethsmaa opened this issue Jan 30, 2024 · 1 comment
Open

Room type should be an enum #81

ethsmaa opened this issue Jan 30, 2024 · 1 comment
Labels
app: client Client project folder app: server Server project folder

Comments

@ethsmaa
Copy link
Contributor

ethsmaa commented Jan 30, 2024

It would be nice if we could explicitly define the grooming type on the backend and frontend

Check this line:

const groomingMode = {
0: [
{
id: 1,
name: "storyPoint",
points: ["1", "2", "3", "5", "8", "13", "21", "?"],
},
],
1: [
{
id: 1,
name: "developmentEase",
weight: 20,
points: ["1", "2", "3", "4", "5", "?"],
},
{
id: 2,
name: "customerEffect",
weight: 10,
points: ["1", "2", "3", "4", "5", "?"],
},
{
id: 3,
name: "performance",
weight: 30,
points: ["1", "2", "3", "4", "5", "?"],
},
{
id: 4,
name: "security",
weight: 10,
points: ["1", "2", "3", "4", "5", "?"],
},
{
id: 5,
name: "maintenance",
weight: 25,
points: ["1", "2", "3", "4", "5", "?"],
},
{
id: 6,
name: "storyPoint",
weight: 0,
points: ["1", "2", "3", "5", "8", "13", "21", "?"],
},
],
};

@mertcanaltin
Copy link
Member

thanks a lot, having the maintenance type in the back gives me confidence, but I think you are talking about being able to manage it dynamically on the front end, which would be nice, I don't think this feature will cause a problem that will break the structure or a vulnerability, I agree about dynamicizing it with a parameter we give from the client 🚀

@mertcanaltin mertcanaltin added app: client Client project folder app: server Server project folder labels Jan 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
app: client Client project folder app: server Server project folder
Projects
None yet
Development

No branches or pull requests

2 participants