Merge branch 'feature/add-s3-settings' into 'develop'
Add ability to S3 settings on Uploads tab Closes pleroma#1924 See merge request pleroma/admin-fe!141
This commit is contained in:
commit
13ace35a3c
2 changed files with 11 additions and 0 deletions
|
@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
- Support pagination of local emoji packs and files
|
||||
- Add MRF Activity Expiration setting
|
||||
- Add ability to disable multi-factor authentication for a user
|
||||
- Ability to configure S3 settings on Upload tab
|
||||
|
||||
### Changed
|
||||
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
<setting :setting-group="uploadersLocal" :data="uploadersLocalData"/>
|
||||
<el-divider v-if="uploadersLocal" class="divider thick-line"/>
|
||||
</el-form>
|
||||
<el-form v-if="showUploadersS3" :model="s3Data" :label-position="labelPosition" :label-width="labelWidth">
|
||||
<setting :setting-group="s3" :data="s3Data"/>
|
||||
<el-divider v-if="s3" class="divider thick-line"/>
|
||||
</el-form>
|
||||
<el-form v-if="showUploadersS3" :model="uploadersS3Data" :label-position="labelPosition" :label-width="labelWidth">
|
||||
<setting :setting-group="uploadersS3" :data="uploadersS3Data"/>
|
||||
<el-divider v-if="uploadersS3" class="divider thick-line"/>
|
||||
|
@ -62,6 +66,12 @@ export default {
|
|||
loading() {
|
||||
return this.settings.loading
|
||||
},
|
||||
s3() {
|
||||
return this.settings.description.find(setting => setting.key === ':s3')
|
||||
},
|
||||
s3Data() {
|
||||
return _.get(this.settings.settings, [':ex_aws', ':s3']) || {}
|
||||
},
|
||||
showUploadersS3() {
|
||||
const uploader = _.get(this.settings.settings, [':pleroma', 'Pleroma.Upload', ':uploader'])
|
||||
return uploader === 'Pleroma.Uploaders.S3'
|
||||
|
|
Loading…
Reference in a new issue