mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
Merge branch 'gw/20201226-admin-formfields' of github.com:owncast/owncast-admin into gw/20201226-admin-formfields
This commit is contained in:
commit
0e04905086
@ -55,7 +55,24 @@ function Storage({ config }) {
|
|||||||
value: config.s3.region,
|
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() {
|
export default function ServerConfig() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user