Commit 515b7fb5fe4b9478ada2522e187d49adfe597115

Authored by Alex Savenko
1 parent a293a865

user registration

Showing 1 changed file with 3 additions and 1 deletions   Show diff stats
app/library/App/Model/User.php
... ... @@ -6,9 +6,11 @@ class User extends \App\Mvc\DateTrackingModel
6 6 {
7 7 public $id;
8 8 public $role;
  9 + public $email;
  10 + public $username;
9 11 public $firstName;
10 12 public $lastName;
11   - public $username;
  13 + public $location;
12 14 public $password;
13 15  
14 16 public function getSource()
... ...