mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Remove trial limits on isPaid()
This commit is contained in:
parent
7c065d8997
commit
24dc6dbfae
@ -291,7 +291,7 @@ class Account extends BaseModel
|
|||||||
|
|
||||||
public function isPaid(): bool
|
public function isPaid(): bool
|
||||||
{
|
{
|
||||||
return Ninja::isNinja() ? ($this->isPaidHostedClient() && !$this->isTrial()) : $this->hasFeature(self::FEATURE_WHITE_LABEL);
|
return Ninja::isNinja() ? $this->isPaidHostedClient() : $this->hasFeature(self::FEATURE_WHITE_LABEL);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function isPremium(): bool
|
public function isPremium(): bool
|
||||||
|
Loading…
x
Reference in New Issue
Block a user