(options)
| 24 | } |
| 25 | |
| 26 | constructor (options) { |
| 27 | super(options) |
| 28 | if (!me.isAdmin()) { return } |
| 29 | this.trialRequests = new CocoCollection([], { url: '/db/trial.request?conditions[sort]="-created"&conditions[limit]=10000', model: TrialRequest }) |
| 30 | this.supermodel.loadCollection(this.trialRequests, 'trial-requests', { cache: false }) |
| 31 | this.dayCounts = [] |
| 32 | } |
| 33 | |
| 34 | onLoaded () { |
| 35 | let count, day |