├── .dockerignore ├── .eslintrc ├── .github ├── CODEOWNERS ├── pull_request_template.md └── workflows │ ├── docker.yml │ ├── newsfile.yml │ ├── sign-off.yml │ └── tests.yml ├── .gitignore ├── .mocharc.yml ├── .npmrc ├── .nycrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── changelog.d └── git.keep ├── config ├── config.sample.yaml └── config.schema.yaml ├── docs ├── bridge-migrations.md ├── howto.md └── puppeting.md ├── package.json ├── pyproject.toml ├── screenshot.png ├── scripts ├── changelog.sh └── check-newsfragment ├── src ├── bot.ts ├── channelsyncroniser.ts ├── clientfactory.ts ├── config.ts ├── db │ ├── connector.ts │ ├── dbdataemoji.ts │ ├── dbdataevent.ts │ ├── dbdatainterface.ts │ ├── postgres.ts │ ├── roomstore.ts │ ├── schema │ │ ├── dbschema.ts │ │ ├── v1.ts │ │ ├── v10.ts │ │ ├── v11.ts │ │ ├── v12.ts │ │ ├── v2.ts │ │ ├── v3.ts │ │ ├── v4.ts │ │ ├── v5.ts │ │ ├── v6.ts │ │ ├── v7.ts │ │ ├── v8.ts │ │ └── v9.ts │ ├── sqlite3.ts │ └── userstore.ts ├── discordas.ts ├── discordcommandhandler.ts ├── discordmessageprocessor.ts ├── log.ts ├── matrixcommandhandler.ts ├── matrixeventprocessor.ts ├── matrixmessageprocessor.ts ├── matrixroomhandler.ts ├── matrixtypes.ts ├── metrics.ts ├── presencehandler.ts ├── provisioner.ts ├── store.ts ├── structures │ ├── lock.ts │ └── timedcache.ts ├── usersyncroniser.ts └── util.ts ├── test ├── config.ts ├── db │ └── test_roomstore.ts ├── mocks │ ├── appservicemock.ts │ ├── channel.ts │ ├── collection.ts │ ├── discordclient.ts │ ├── discordclientfactory.ts │ ├── emoji.ts │ ├── guild.ts │ ├── member.ts │ ├── message.ts │ ├── presence.ts │ ├── role.ts │ └── user.ts ├── structures │ ├── test_lock.ts │ └── test_timedcache.ts ├── test_channelsyncroniser.ts ├── test_clientfactory.ts ├── test_config.ts ├── test_discordbot.ts ├── test_discordcommandhandler.ts ├── test_discordmessageprocessor.ts ├── test_log.ts ├── test_matrixcommandhandler.ts ├── test_matrixeventprocessor.ts ├── test_matrixmessageprocessor.ts ├── test_matrixroomhandler.ts ├── test_presencehandler.ts ├── test_provisioner.ts ├── test_store.ts ├── test_usersyncroniser.ts └── test_util.ts ├── tools ├── addRoomsToDirectory.ts ├── addbot.ts ├── adminme.ts ├── chanfix.ts ├── ghostfix.ts ├── toolshelper.ts └── userClientTools.ts ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @matrix-org/bridges -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/newsfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/.github/workflows/newsfile.yml -------------------------------------------------------------------------------- /.github/workflows/sign-off.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/.github/workflows/sign-off.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/.mocharc.yml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/.npmrc -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/.nycrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/README.md -------------------------------------------------------------------------------- /changelog.d/git.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/config.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/config/config.sample.yaml -------------------------------------------------------------------------------- /config/config.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/config/config.schema.yaml -------------------------------------------------------------------------------- /docs/bridge-migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/docs/bridge-migrations.md -------------------------------------------------------------------------------- /docs/howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/docs/howto.md -------------------------------------------------------------------------------- /docs/puppeting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/docs/puppeting.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/pyproject.toml -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/screenshot.png -------------------------------------------------------------------------------- /scripts/changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/scripts/changelog.sh -------------------------------------------------------------------------------- /scripts/check-newsfragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/scripts/check-newsfragment -------------------------------------------------------------------------------- /src/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/bot.ts -------------------------------------------------------------------------------- /src/channelsyncroniser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/channelsyncroniser.ts -------------------------------------------------------------------------------- /src/clientfactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/clientfactory.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/db/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/connector.ts -------------------------------------------------------------------------------- /src/db/dbdataemoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/dbdataemoji.ts -------------------------------------------------------------------------------- /src/db/dbdataevent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/dbdataevent.ts -------------------------------------------------------------------------------- /src/db/dbdatainterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/dbdatainterface.ts -------------------------------------------------------------------------------- /src/db/postgres.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/postgres.ts -------------------------------------------------------------------------------- /src/db/roomstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/roomstore.ts -------------------------------------------------------------------------------- /src/db/schema/dbschema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/dbschema.ts -------------------------------------------------------------------------------- /src/db/schema/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/v1.ts -------------------------------------------------------------------------------- /src/db/schema/v10.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/v10.ts -------------------------------------------------------------------------------- /src/db/schema/v11.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/v11.ts -------------------------------------------------------------------------------- /src/db/schema/v12.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/v12.ts -------------------------------------------------------------------------------- /src/db/schema/v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/v2.ts -------------------------------------------------------------------------------- /src/db/schema/v3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/v3.ts -------------------------------------------------------------------------------- /src/db/schema/v4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/v4.ts -------------------------------------------------------------------------------- /src/db/schema/v5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/v5.ts -------------------------------------------------------------------------------- /src/db/schema/v6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/v6.ts -------------------------------------------------------------------------------- /src/db/schema/v7.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/v7.ts -------------------------------------------------------------------------------- /src/db/schema/v8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/v8.ts -------------------------------------------------------------------------------- /src/db/schema/v9.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/schema/v9.ts -------------------------------------------------------------------------------- /src/db/sqlite3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/sqlite3.ts -------------------------------------------------------------------------------- /src/db/userstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/db/userstore.ts -------------------------------------------------------------------------------- /src/discordas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/discordas.ts -------------------------------------------------------------------------------- /src/discordcommandhandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/discordcommandhandler.ts -------------------------------------------------------------------------------- /src/discordmessageprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/discordmessageprocessor.ts -------------------------------------------------------------------------------- /src/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/log.ts -------------------------------------------------------------------------------- /src/matrixcommandhandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/matrixcommandhandler.ts -------------------------------------------------------------------------------- /src/matrixeventprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/matrixeventprocessor.ts -------------------------------------------------------------------------------- /src/matrixmessageprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/matrixmessageprocessor.ts -------------------------------------------------------------------------------- /src/matrixroomhandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/matrixroomhandler.ts -------------------------------------------------------------------------------- /src/matrixtypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/matrixtypes.ts -------------------------------------------------------------------------------- /src/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/metrics.ts -------------------------------------------------------------------------------- /src/presencehandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/presencehandler.ts -------------------------------------------------------------------------------- /src/provisioner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/provisioner.ts -------------------------------------------------------------------------------- /src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/store.ts -------------------------------------------------------------------------------- /src/structures/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/structures/lock.ts -------------------------------------------------------------------------------- /src/structures/timedcache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/structures/timedcache.ts -------------------------------------------------------------------------------- /src/usersyncroniser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/usersyncroniser.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/src/util.ts -------------------------------------------------------------------------------- /test/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/config.ts -------------------------------------------------------------------------------- /test/db/test_roomstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/db/test_roomstore.ts -------------------------------------------------------------------------------- /test/mocks/appservicemock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/mocks/appservicemock.ts -------------------------------------------------------------------------------- /test/mocks/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/mocks/channel.ts -------------------------------------------------------------------------------- /test/mocks/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/mocks/collection.ts -------------------------------------------------------------------------------- /test/mocks/discordclient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/mocks/discordclient.ts -------------------------------------------------------------------------------- /test/mocks/discordclientfactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/mocks/discordclientfactory.ts -------------------------------------------------------------------------------- /test/mocks/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/mocks/emoji.ts -------------------------------------------------------------------------------- /test/mocks/guild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/mocks/guild.ts -------------------------------------------------------------------------------- /test/mocks/member.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/mocks/member.ts -------------------------------------------------------------------------------- /test/mocks/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/mocks/message.ts -------------------------------------------------------------------------------- /test/mocks/presence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/mocks/presence.ts -------------------------------------------------------------------------------- /test/mocks/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/mocks/role.ts -------------------------------------------------------------------------------- /test/mocks/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/mocks/user.ts -------------------------------------------------------------------------------- /test/structures/test_lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/structures/test_lock.ts -------------------------------------------------------------------------------- /test/structures/test_timedcache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/structures/test_timedcache.ts -------------------------------------------------------------------------------- /test/test_channelsyncroniser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_channelsyncroniser.ts -------------------------------------------------------------------------------- /test/test_clientfactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_clientfactory.ts -------------------------------------------------------------------------------- /test/test_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_config.ts -------------------------------------------------------------------------------- /test/test_discordbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_discordbot.ts -------------------------------------------------------------------------------- /test/test_discordcommandhandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_discordcommandhandler.ts -------------------------------------------------------------------------------- /test/test_discordmessageprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_discordmessageprocessor.ts -------------------------------------------------------------------------------- /test/test_log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_log.ts -------------------------------------------------------------------------------- /test/test_matrixcommandhandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_matrixcommandhandler.ts -------------------------------------------------------------------------------- /test/test_matrixeventprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_matrixeventprocessor.ts -------------------------------------------------------------------------------- /test/test_matrixmessageprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_matrixmessageprocessor.ts -------------------------------------------------------------------------------- /test/test_matrixroomhandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_matrixroomhandler.ts -------------------------------------------------------------------------------- /test/test_presencehandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_presencehandler.ts -------------------------------------------------------------------------------- /test/test_provisioner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_provisioner.ts -------------------------------------------------------------------------------- /test/test_store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_store.ts -------------------------------------------------------------------------------- /test/test_usersyncroniser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_usersyncroniser.ts -------------------------------------------------------------------------------- /test/test_util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/test/test_util.ts -------------------------------------------------------------------------------- /tools/addRoomsToDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/tools/addRoomsToDirectory.ts -------------------------------------------------------------------------------- /tools/addbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/tools/addbot.ts -------------------------------------------------------------------------------- /tools/adminme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/tools/adminme.ts -------------------------------------------------------------------------------- /tools/chanfix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/tools/chanfix.ts -------------------------------------------------------------------------------- /tools/ghostfix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/tools/ghostfix.ts -------------------------------------------------------------------------------- /tools/toolshelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/tools/toolshelper.ts -------------------------------------------------------------------------------- /tools/userClientTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/tools/userClientTools.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-discord/HEAD/yarn.lock --------------------------------------------------------------------------------