Browse Source

Merge branch 'gw/20201226-admin-formfields' of github.com:owncast/owncast-admin into gw/20201226-admin-formfields

pull/1886/head
gingervitis 5 years ago
parent
commit
0e04905086
  1. 19
      web/pages/config-storage.tsx

19
web/pages/config-storage.tsx

@ -55,7 +55,24 @@ function Storage({ config }) { @@ -55,7 +55,24 @@ function Storage({ config }) {
value: config.s3.region,
},
];
return <KeyValueTable title="External Storage" data={data} />;
const advanced = [
{
name: "ACL",
value: config.s3.acl
},
{
name: "Serving Endpoint",
value: config.s3.servingEndpoint
},
];
return (
<>
<KeyValueTable title="External Storage" data={data} />
<KeyValueTable title="Advanced options" data={advanced} />
</>
);
}
export default function ServerConfig() {

Loading…
Cancel
Save