feature: send thankscard page
This commit is contained in:
@@ -28,7 +28,7 @@ class LoginNotificationTest extends TestCase
|
||||
'name' => 'Test User',
|
||||
'mail' => 'test@example.com',
|
||||
'pass' => md5('password123'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_MEMBER'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
@@ -87,7 +87,7 @@ class LoginNotificationTest extends TestCase
|
||||
'name' => 'Inactive User',
|
||||
'mail' => 'test@example.com',
|
||||
'pass' => md5('password123'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_MEMBER'),
|
||||
'status' => config('constants.STATUS_INACTIVE'), // 0
|
||||
'card' => 10,
|
||||
@@ -127,7 +127,7 @@ class LoginNotificationTest extends TestCase
|
||||
'name' => 'Member User',
|
||||
'mail' => 'member@example.com',
|
||||
'pass' => md5('password123'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_MEMBER'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
@@ -152,7 +152,7 @@ class LoginNotificationTest extends TestCase
|
||||
'name' => 'Admin User',
|
||||
'mail' => 'admin@example.com',
|
||||
'pass' => md5('password123'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_ADMIN'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
@@ -179,7 +179,7 @@ class LoginNotificationTest extends TestCase
|
||||
'name' => 'First Login User',
|
||||
'mail' => 'first@example.com',
|
||||
'pass' => md5('password123'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_MEMBER'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
@@ -204,7 +204,7 @@ class LoginNotificationTest extends TestCase
|
||||
'name' => 'First Login Admin',
|
||||
'mail' => 'first_admin@example.com',
|
||||
'pass' => md5('password123'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_ADMIN'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
@@ -232,7 +232,7 @@ class LoginNotificationTest extends TestCase
|
||||
'name' => 'Lockout User',
|
||||
'mail' => 'test@example.com',
|
||||
'pass' => md5('password123'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_MEMBER'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
|
||||
Reference in New Issue
Block a user