mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
280e42d366
* Filter properties which can be saved on free accounts * Self Updater * Fixes for tests * Refactor for settings * Working on feature permissions - Settings Saver * Fixes for events on self-updater * Working on Self Updater * Working on free /pro settings saver * Implement free/pro/enterprise saving for settings * Update company request * Implement settings saver for hosted platform for clients and group level settings * Implement quotas for hosted version * Validation rules for hosted platform"
50 lines
897 B
PHP
50 lines
897 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\ValidationRules\Ninja;
|
|
|
|
use App\Models\Company;
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
/**
|
|
* Class CanAddUserRule
|
|
* @package App\Http\ValidationRules
|
|
*/
|
|
class CanAddUserRule implements Rule
|
|
{
|
|
|
|
public $account;
|
|
|
|
public function __construct($account)
|
|
{
|
|
$this->account = $account;
|
|
}
|
|
|
|
/**
|
|
* @param string $attribute
|
|
* @param mixed $value
|
|
* @return bool
|
|
*/
|
|
public function passes($attribute, $value)
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function message()
|
|
{
|
|
return ctrans('texts.limit_users', ['limit' => 1]);
|
|
}
|
|
|
|
}
|