Change workspace custom domains limits

This commit is contained in:
Julien Nahum 2023-12-03 15:31:34 +01:00
parent 8725977068
commit 901682e7dd
1 changed files with 2 additions and 2 deletions

View File

@ -46,8 +46,8 @@ class License extends Model
public function getCustomDomainLimitCountAttribute()
{
return [
1 => 5,
2 => 25,
1 => 1,
2 => 10,
3 => null,
][$this->meta['tier']];
}