mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 11:54:33 +03:00
🔥 remove fileStorage option (#8144)
refs #8032 - this was used to disable the upload image functionality in Ghost-Admin - we no longer need this boolean, because people can add their own storage adapter
This commit is contained in:
parent
27ee1dc7b8
commit
974adee932
@ -26,7 +26,6 @@ function getAboutConfig() {
|
||||
|
||||
function getBaseConfig() {
|
||||
return {
|
||||
fileStorage: config.get('fileStorage') !== false,
|
||||
useGravatar: !config.isPrivacyDisabled('useGravatar'),
|
||||
publicAPI: config.get('publicAPI') === true,
|
||||
blogUrl: utils.url.urlFor('home', true),
|
||||
|
@ -40,7 +40,6 @@ describe('Configuration API', function () {
|
||||
amp: 'amp'
|
||||
});
|
||||
|
||||
props.fileStorage.should.eql(true);
|
||||
props.useGravatar.should.eql(false);
|
||||
props.publicAPI.should.eql(false);
|
||||
props.clientId.should.eql('ghost-admin');
|
||||
|
Loading…
Reference in New Issue
Block a user