Merge branch 'develop' of github.com:snipe/snipe-it into develop

This commit is contained in:
snipe 2016-10-31 13:25:54 -07:00
commit adc3ebee41
2 changed files with 2 additions and 1 deletions

View file

@ -176,7 +176,7 @@ class AuthController extends Controller
$google2fa = app()->make('PragmaRX\Google2FA\Contracts\Google2FA');
if ($user->two_factor_secret=='') {
$user->two_factor_secret = $google2fa->generateSecretKey();
$user->two_factor_secret = $google2fa->generateSecretKey(32);
$user->save();
}

View file

@ -59,6 +59,7 @@ class MigrateAssetLogToActionLog extends Migration
$a->expected_checkin = $log->expected_checkin;
$a->thread_id = $log->thread_id;
$a->accepted_id = $log->accepted_id;
$a->filename = $log->filename;
$a->save();