Skip to content
Snippets Groups Projects
Commit 7640f66f authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Merge branch 'refactor-vote' into 'master'

Remove id from vote model

See merge request arsnova/arsnova-lite!222
parents cc5e14a2 86ff0b84
1 merge request!222Remove id from vote model
Pipeline #27114 passed with stages
in 8 minutes and 8 seconds
export class Vote {
id: string;
userId: string;
commentId: string;
vote: number;
......@@ -7,7 +6,6 @@ export class Vote {
constructor(userId: string ,
commentId: string,
vote: number) {
this.id = '';
this.userId = userId;
this.commentId = commentId;
this.vote = vote;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment