Will no longer show incomplete languages. [skip ci]

This commit is contained in:
James Cole
2017-12-02 07:28:03 +01:00
parent 8cfd19855a
commit 3ad833b3ae
2 changed files with 13 additions and 17 deletions

View File

@@ -102,7 +102,6 @@ class PreferencesController extends Controller
$tjOptionalFields = Preferences::get('transaction_journal_optional_fields', [])->data;
$is2faEnabled = Preferences::get('twoFactorAuthEnabled', 0)->data; // twoFactorAuthEnabled
$has2faSecret = null !== Preferences::get('twoFactorAuthSecret'); // hasTwoFactorAuthSecret
$showIncomplete = true === env('SHOW_INCOMPLETE_TRANSLATIONS', false);
return view(
'preferences.index',
@@ -117,7 +116,6 @@ class PreferencesController extends Controller
'fiscalYearStart',
'is2faEnabled',
'has2faSecret',
'showIncomplete',
'showDeps'
)
);