()
| 544 | } |
| 545 | |
| 546 | isPaidOnlineClassUser () { |
| 547 | const products = this.get('products') |
| 548 | if (products) { |
| 549 | const onlineClassProducts = this.activeProducts('online-classes') |
| 550 | if (onlineClassProducts.length > 0) { return true } |
| 551 | } |
| 552 | return false |
| 553 | } |
| 554 | |
| 555 | premiumEndDate () { |
| 556 | if (!this.isPremium()) { return null } |
nothing calls this directly
no test coverage detected