Skip to content

Instantly share code, notes, and snippets.

{
"basic": {
"license key": "***REMOVED SENSITIVE VALUE***",
"date": "Wed, 02 Sep 2020 08:15:28 +0000",
"ownCloud version": "10.5.0.10",
"ownCloud version string": "10.5.0",
"ownCloud edition": "Community",
"server OS": "Linux",
"server OS version": "Linux websrv2-adbe.e-crane.local 4.18.0-193.14.2.el8_2.x86_64 #1 SMP Sun Jul 26 03:54:29 UTC 2020 x86_64",
"server SAPI": "fpm-fcgi",
Technical information
=====================
The following list covers which files have failed the integrity check. Please read
the previous linked documentation to learn more about the errors and how to fix
them.
Results
=======
- twofactor_totp
- FILE_MISSING
@GlennMatthys
GlennMatthys / flatMapObj.js
Created September 19, 2018 12:54
Javascript flatMap array to object
array.reduce(
(acc, val) =>
{
Object.keys(val).forEach(key => acc[key] = val[key]);
return acc;
}, {}
);