cipherguard-mad
Version:
Cipherguard javascript application library for the open source password manager for teams
33 lines (29 loc) • 1.15 kB
JavaScript
/**
* Cipherguard ~ Open source password manager for teams
* Copyright (c) KhulnaSoft Ltd (https://www.khulnasoft.com)
*
* Licensed under GNU Affero General Public License version 3 of the or any later version.
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) KhulnaSoft Ltd (https://www.khulnasoft.com)
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
* @link https://www.khulnasoft.com KhulnaSoft(tm)
*/
import I18n from "cipherguard-mad/util/lang/i18n";
import MadMap from 'cipherguard-mad/model/map/map';
const Profile = MadMap.extend('mad.test.model.Profile', {
first_name: 'string',
last_name: 'string'
});
Profile.validationRules = {
first_name: [
{rule: 'required', message: __('A first name is required.')},
{rule: 'notEmpty', message: __('A first name is required.')}
],
last_name: [
{rule: 'required', message: __('A last name is required.')},
{rule: 'notEmpty', message: __('A last name is required.')}
]
};
export default Profile;