96743e64cd
requires https://github.com/TryGhost/Ghost/pull/8093 - adds `theme.activate()` method and associated adapter method for activating themes rather than relying on `settings.activeTheme` - minor refactors to the `modals/upload-theme` component to use a full theme model
21 lines
308 B
JavaScript
21 lines
308 B
JavaScript
export default [
|
|
{
|
|
name: 'casper',
|
|
package: {
|
|
name: 'Blog',
|
|
version: '1.0'
|
|
},
|
|
active: true
|
|
},
|
|
{
|
|
name: 'foo',
|
|
package: {
|
|
name: 'Foo',
|
|
version: '0.1'
|
|
}
|
|
},
|
|
{
|
|
name: 'bar'
|
|
}
|
|
];
|