Go to file
2022-01-29 13:06:39 +01:00
.github/workflows version tag on docker hub (#187) 2021-12-08 22:02:43 +01:00
public Import users from CSV 2020-11-02 18:29:56 +00:00
src Merge branch 'fed_api' of git://github.com/dklimpel/synapse-admin into dklimpel-fed_api 2022-01-29 13:06:39 +01:00
.dockerignore Add git context to docker, so we can derive the release version 2020-07-29 17:49:30 +02:00
.env Allow fixed homeserver (#142) 2021-05-18 12:39:53 +02:00
.gitignore Create a base react-admin application 2020-02-07 21:20:57 +01:00
.prettierrc Fix typo in .prettierrc 2022-01-07 08:09:11 +01:00
.travis.yml Update nodejs version for travis 2021-05-05 19:31:50 +02:00
docker-compose.yml Add docker-compose.yml 2021-04-21 10:51:17 +02:00
Dockerfile Switch Dockerfile to use current LTS version of Node (#205) 2021-11-15 21:35:23 +01:00
LICENSE Create a base react-admin application 2020-02-07 21:20:57 +01:00
package.json Bump version and update dependencies 2021-12-17 20:38:18 +01:00
README.md Merge branch 'fed_api' of git://github.com/dklimpel/synapse-admin into dklimpel-fed_api 2022-01-29 13:06:39 +01:00
screenshots.jpg Add screenshots and install instructions 2020-07-08 07:49:42 +00:00
yarn.lock Bump version and update dependencies 2021-12-17 20:38:18 +01:00

Synapse admin ui

This project is built using react-admin.

It needs at least Synapse v1.49.0 for all functions to work as expected!

You get your server version with the request /_synapse/admin/v1/server_version. See also Synapse version API.

After entering the URL on the login page of synapse-admin the server version appears below the input field.

You need access to the following endpoints:

  • /_matrix
  • /_synapse/admin

See also Synapse administration endpoints

Step-By-Step install

  • make sure you have installed the following: git, yarn, nodejs
  • download the source code: git clone https://github.com/matrix07012/synapse-admin.git
  • change into downloaded directory: cd synapse-admin
  • download dependencies: yarn install
  • start web server: yarn start

You can fix the homeserver, so that the user can no longer define it himself. Either you define it at startup (e.g. REACT_APP_SERVER=https://yourmatrixserver.example.com yarn start) or by editing it in the .env file. See also the documentation.

Screenshots

Screenshots

Development

  • Use yarn test to run all style, lint and unit tests
  • Use yarn fix to fix the coding style