Fixed 267U.pre2
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
import Chart from "../../core.js";
|
||||
export const name = "activeUsers";
|
||||
export const schema = {
|
||||
readWrite: {
|
||||
intersection: [
|
||||
"read",
|
||||
"write"
|
||||
],
|
||||
range: "small"
|
||||
},
|
||||
read: {
|
||||
uniqueIncrement: true,
|
||||
range: "small"
|
||||
},
|
||||
write: {
|
||||
uniqueIncrement: true,
|
||||
range: "small"
|
||||
},
|
||||
registeredWithinWeek: {
|
||||
uniqueIncrement: true,
|
||||
range: "small"
|
||||
},
|
||||
registeredWithinMonth: {
|
||||
uniqueIncrement: true,
|
||||
range: "small"
|
||||
},
|
||||
registeredWithinYear: {
|
||||
uniqueIncrement: true,
|
||||
range: "small"
|
||||
},
|
||||
registeredOutsideWeek: {
|
||||
uniqueIncrement: true,
|
||||
range: "small"
|
||||
},
|
||||
registeredOutsideMonth: {
|
||||
uniqueIncrement: true,
|
||||
range: "small"
|
||||
},
|
||||
registeredOutsideYear: {
|
||||
uniqueIncrement: true,
|
||||
range: "small"
|
||||
}
|
||||
};
|
||||
export const entity = Chart.schemaToEntity(name, schema);
|
||||
Reference in New Issue
Block a user