mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-25 02:31:59 -05:00
Refactored fixutres data for site and member
refs https://github.com/TryGhost/members.js/issues/10 Refactored to include free member data and added dummy data for testing
This commit is contained in:
parent
275655584e
commit
0a5e0648c8
1 changed files with 21 additions and 12 deletions
33
ghost/portal/src/test/fixtures/data.js
vendored
33
ghost/portal/src/test/fixtures/data.js
vendored
|
@ -1,20 +1,29 @@
|
|||
export const site = {
|
||||
title: 'Ghost Site',
|
||||
description: 'Thoughts, stories and ideas',
|
||||
logo: '',
|
||||
siteUrl: window.location.origin,
|
||||
adminUrl: window.location.origin + '/ghost',
|
||||
description: 'Thoughts, stories and ideas.',
|
||||
logo: 'https://pbs.twimg.com/profile_images/1111773508231667713/mf2N0uqc_400x400.png',
|
||||
brand: {
|
||||
primaryColor: '#abcdef'
|
||||
},
|
||||
url: 'http://localhost:2368/',
|
||||
plans: {
|
||||
monthly: '10',
|
||||
yearly: '99',
|
||||
monthly: 12,
|
||||
yearly: 110,
|
||||
currency: 'USD',
|
||||
currencySymbol: '$'
|
||||
}
|
||||
currency_symbol: '$'
|
||||
},
|
||||
allowSelfSignup: true,
|
||||
version: '3.13'
|
||||
};
|
||||
|
||||
export const member = {
|
||||
email: 'member@example.com',
|
||||
isPaid: false,
|
||||
avatarImage: '',
|
||||
subscriptions: []
|
||||
free: {
|
||||
uuid: 'd7d3b1a0-90f4-4b93-a51f-76b56213b535',
|
||||
email: 'member@example.com',
|
||||
name: 'Example Member',
|
||||
firstname: null,
|
||||
avatar_image: '',
|
||||
subscriptions: [],
|
||||
paid: false
|
||||
}
|
||||
};
|
Loading…
Add table
Reference in a new issue