mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-04 08:54:36 +03:00
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
|
const customThemeSettingsService = require('../../services/custom-theme-settings');
|
||
|
|
||
|
module.exports = {
|
||
|
docName: 'custom_theme_settings',
|
||
|
|
||
|
browse: {
|
||
|
permissions: true,
|
||
|
query() {
|
||
|
return customThemeSettingsService.listSettings();
|
||
|
}
|
||
|
}
|
||
|
};
|