Merge pull request #2107 from rgarmsen2295/plt-1715

PLT-1715 - Removed the ability to disable file storage from the admin console
Этот коммит содержится в:
Joram Wilander
2016-02-08 18:23:06 -05:00
родитель 1af689a5b6 e56454ca11
Коммит 8e1c9c371b
3 изменённых файлов: 0 добавлений и 7 удалений

Просмотреть файл

@@ -8,10 +8,6 @@ import crypto from 'crypto';
import {injectIntl, intlShape, defineMessages, FormattedMessage} from 'mm-intl';
const holders = defineMessages({
storeDisabled: {
id: 'admin.image.storeDisabled',
defaultMessage: 'Disable File Storage'
},
storeLocal: {
id: 'admin.image.storeLocal',
defaultMessage: 'Local File System'
@@ -242,7 +238,6 @@ class FileSettings extends React.Component {
defaultValue={this.props.config.FileSettings.DriverName}
onChange={this.handleChange.bind(this, 'DriverName')}
>
<option value=''>{formatMessage(holders.storeDisabled)}</option>
<option value='local'>{formatMessage(holders.storeLocal)}</option>
<option value='amazons3'>{formatMessage(holders.storeAmazonS3)}</option>
</select>