mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-03-11 02:49:44 +01:00
Merge pull request #3287 from sideffect0/2.4
grep -rl "test\.com" . | xargs sed -i 's/test.com/example.com/g'
This commit is contained in:
commit
df5ade6554
@ -47,7 +47,7 @@ Here are some useful quick links:
|
|||||||
|
|
||||||
To test out the demo, you may login to the [Dashboard](https://dev.cachethq.io/dashboard) with the following:
|
To test out the demo, you may login to the [Dashboard](https://dev.cachethq.io/dashboard) with the following:
|
||||||
|
|
||||||
- **Username:** `test` or `test@test.com`
|
- **Username:** `test` or `test@example.com`
|
||||||
- **Password:** `test123`
|
- **Password:** `test123`
|
||||||
|
|
||||||
> The demo resets every 30 minutes.
|
> The demo resets every 30 minutes.
|
||||||
|
@ -444,7 +444,7 @@ EINCIDENT;
|
|||||||
[
|
[
|
||||||
'username' => 'test',
|
'username' => 'test',
|
||||||
'password' => 'test123',
|
'password' => 'test123',
|
||||||
'email' => 'test@test.com',
|
'email' => 'test@example.com',
|
||||||
'level' => User::LEVEL_ADMIN,
|
'level' => User::LEVEL_ADMIN,
|
||||||
'api_key' => '9yMHsdioQosnyVK4iCVR',
|
'api_key' => '9yMHsdioQosnyVK4iCVR',
|
||||||
],
|
],
|
||||||
|
@ -16,7 +16,7 @@ Psy Shell v0.8.8 (PHP 7.1.6 — cli) by Justin Hileman
|
|||||||
=> CachetHQ\Cachet\Models\User {#865
|
=> CachetHQ\Cachet\Models\User {#865
|
||||||
id: 1,
|
id: 1,
|
||||||
username: "test",
|
username: "test",
|
||||||
email: "test@test.com",
|
email: "test@example.com",
|
||||||
api_key: "9yMHsdioQosnyVK4iCVR",
|
api_key: "9yMHsdioQosnyVK4iCVR",
|
||||||
active: 1,
|
active: 1,
|
||||||
level: 1,
|
level: 1,
|
||||||
|
@ -31,7 +31,7 @@ class CreateUserCommandTest extends AbstractTestCase
|
|||||||
$params = [
|
$params = [
|
||||||
'username' => 'Test',
|
'username' => 'Test',
|
||||||
'password' => 'fooey',
|
'password' => 'fooey',
|
||||||
'email' => 'test@test.com',
|
'email' => 'test@example.com',
|
||||||
'level' => 1,
|
'level' => 1,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ class SignupUserCommandTest extends AbstractTestCase
|
|||||||
$params = [
|
$params = [
|
||||||
'username' => 'Test',
|
'username' => 'Test',
|
||||||
'password' => 'fooey',
|
'password' => 'fooey',
|
||||||
'email' => 'test@test.com',
|
'email' => 'test@example.com',
|
||||||
'level' => 1,
|
'level' => 1,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user