mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 04:01:10 -04:00
fix reset pass validation message and add 401 migration
This commit is contained in:
@ -0,0 +1,29 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Crater\Models\Setting;
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
class UpdateCraterVersion401 extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Setting::setSetting('version', '4.0.1');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"/assets/js/app.js": "/assets/js/app.js?id=36ca4d0eda79a65143fe",
|
"/assets/js/app.js": "/assets/js/app.js?id=68393d0f3c4030712b60",
|
||||||
"/assets/css/crater.css": "/assets/css/crater.css?id=262352bd0c724bad8f2f"
|
"/assets/css/crater.css": "/assets/css/crater.css?id=262352bd0c724bad8f2f"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -51,7 +51,7 @@
|
|||||||
>
|
>
|
||||||
{{
|
{{
|
||||||
$tc(
|
$tc(
|
||||||
'validation.password_length ',
|
'validation.password_length',
|
||||||
$v.formData.password.minLength.min,
|
$v.formData.password.minLength.min,
|
||||||
{ count: $v.formData.password.$params.minLength.min }
|
{ count: $v.formData.password.$params.minLength.min }
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user