🔥 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:
Katharina Irrgang 2017-03-14 11:31:33 +01:00 committed by Kevin Ansfield
parent 27ee1dc7b8
commit 974adee932
2 changed files with 0 additions and 2 deletions

View File

@ -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),

View File

@ -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');