()
| 576 | } |
| 577 | |
| 578 | isPremium () { |
| 579 | if (this.isInGodMode()) { return true } |
| 580 | if (this.isAdmin()) { return true } |
| 581 | if (this.hasSubscription()) { return true } |
| 582 | return false |
| 583 | } |
| 584 | |
| 585 | isForeverPremium () { |
| 586 | return this.get('stripe')?.free === true |
no test coverage detected