feat: mastery rank up inbox message #1206
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "mastery-slates"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #1203
@ -100,3 +100,3 @@
{
Key: String,
Tag: String,
Tag: Schema.Types.Mixed,
why use mixed here? its the same as allowing everything. We should certainly not use mixed for anything that was validated.
Mixed was only set for things that are not implemented
Because it can also be a number.
@ -41,3 +41,3 @@
export interface Arg {
Key: string;
Tag: string;
Tag: string | number;
tag can be a number? I don't see why this pr needs that change, so I don't know where it's coming from
The
NEW_RANK
is a number.I think this might be a DE moment, and the client can just work with both.
It just work when a number is supplied, right?
I sadly can't try now.
Yeah, it's a number in my inbox messages.
Weird situation, well in that case we gotta use mixed, you are right.
PR is good to go