blob: b0cf0486fd12f1914d14e2b5df8dd8cad95ffc51 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\Sprinkle\Account\Repository;
/**
* Token repository class for new account verifications.
*
* @author Alex Weissman (https://alexanderweissman.com)
* @see https://learn.userfrosting.com/users/user-accounts
*/
class VerificationRepository extends TokenRepository
{
/**
* {@inheritDoc}
*/
protected $modelIdentifier = 'verification';
/**
* {@inheritDoc}
*/
protected function updateUser($user, $args)
{
$user->flag_verified = 1;
// TODO: generate user activity? or do this in controller?
$user->save();
}
}
|