mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00

* Refactor HookFilter to only support enabledEvents (and add a function to convert) * Convert connections to deprecate ignoreHooks * Update documentation * Split out EventHookCheckbox * Refactor frontend to support enableHooks only mode * drop old field name * changelog * Fix enabledHooks for widgets * Fixes across the board * Update test description * Cleanup * Fix HookFilter * Fixup checkboxes * Cleanup
13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
import { Button } from "../elements";
|
|
|
|
export default function GeneralConfig() {
|
|
return <div>
|
|
<h2>General Configuration</h2>
|
|
<hr />
|
|
<section>
|
|
<h3> Filters </h3>
|
|
<p> You have no configured filters. </p>
|
|
<Button> Add Filter </Button>
|
|
</section>
|
|
</div>;
|
|
} |