diff options
author | 2023-02-06 09:33:47 +0100 | |
---|---|---|
committer | 2023-02-06 09:33:47 +0100 | |
commit | 83b522a1b651fd20e45755c2ad0a0a124395fbd4 (patch) | |
tree | c888b4b15a046b876d5f9339e7166bc647ac38dc /web/source/settings/lib/query/admin/index.js | |
parent | [chore/frogend] Restructure form data default values / update from Query data... (diff) | |
download | gotosocial-83b522a1b651fd20e45755c2ad0a0a124395fbd4.tar.xz |
[feature/Frogend] basic report admin interface (#1424)
* basic listing of reports
* report detail overview, resolving
* report detail styling tweaks
* linter fixes
Diffstat (limited to 'web/source/settings/lib/query/admin/index.js')
-rw-r--r-- | web/source/settings/lib/query/admin/index.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/source/settings/lib/query/admin/index.js b/web/source/settings/lib/query/admin/index.js index 33e14521e..c348a2701 100644 --- a/web/source/settings/lib/query/admin/index.js +++ b/web/source/settings/lib/query/admin/index.js @@ -78,7 +78,8 @@ const endpoints = (build) => ({ }) }), ...require("./import-export")(build), - ...require("./custom-emoji")(build) + ...require("./custom-emoji")(build), + ...require("./reports")(build) }); module.exports = base.injectEndpoints({ endpoints });
\ No newline at end of file |