0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Made the default ID a little more fun

no-issue

A bunch of zeroes is boring :(
This commit is contained in:
Fabien O'Carroll 2024-04-23 11:08:39 +07:00 committed by Fabien 'egg' O'Carroll
parent dfeb965878
commit da2ba37f63

View file

@ -10,7 +10,7 @@ export class ActorRepositoryInMemory implements ActorRepository {
constructor(@Inject('SettingsCache') settingsCache: SettingsCache) {
this.actors = [
Actor.create({
id: ObjectID.createFromHexString('000000000000000000000000'),
id: ObjectID.createFromHexString('deadbeefdeadbeefdeadbeef'),
username: 'index',
publicKey: settingsCache.get('ghost_public_key'),
privateKey: settingsCache.get('ghost_private_key')