Borislav Pantaleev
48d933e028
Upgrade react-admin to version 5 ( #40 )
...
* wip on ra upgrade
* Finish upgrade
* fix package.json
* pr fixes
* more pr fixes
* update readme
2024-09-24 10:02:47 +03:00
Aine
24cf0a60bf
Expose user avatar URL field in the UI ( #27 )
...
* wip
* some fixes
* update readme
* update readme
* Add option to change/erase any user's avatar
* Fix README
* Remove mutationMode from Edit
* remove log
* update readme
2024-09-17 23:06:12 +03:00
dependabot[bot]
d5113aad72
Bump dompurify from 2.5.0 to 2.5.6 ( #35 )
...
Bumps [dompurify](https://github.com/cure53/DOMPurify ) from 2.5.0 to 2.5.6.
- [Release notes](https://github.com/cure53/DOMPurify/releases )
- [Commits](https://github.com/cure53/DOMPurify/compare/2.5.0...2.5.6 )
---
updated-dependencies:
- dependency-name: dompurify
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-17 20:34:41 +03:00
Aine
6957cb1f7d
Fix Bulk registration invalid MXID in requests, fixes #30 ( #33 )
...
* Fix Bulk registration invalid MXID in requests
* update readme
2024-09-17 14:02:41 +03:00
Aine
66c706532a
Fix required fields check on Bulk registration CSV upload, fixes #29 ( #32 )
2024-09-17 13:17:07 +03:00
Aine
332e98a095
add dev stack
2024-09-17 12:54:29 +03:00
Aine
f639a1c9ff
rename release artifact file
2024-09-14 21:36:03 +03:00
Aine
8282bb0926
add github release CI step
2024-09-14 21:32:36 +03:00
Aine
264d2ff59d
add on-tags CI build
2024-09-14 21:14:22 +03:00
Aine
90a6c7d8c2
switch to tag-based build
2024-09-14 21:09:58 +03:00
Borislav Pantaleev
7de9166648
Add UI option to block deleted rooms from being rejoined ( #26 )
...
Add UI option to block deleted rooms from being rejoined
This is almost a copy of https://github.com/Awesome-Technologies/synapse-admin/pull/166 PR,
authored by @jkanefendt
2024-09-14 11:03:51 +03:00
Borislav Pantaleev
0bf3440fc8
Federation page improvements for dark mode and last_entry without a date ( #19 )
...
Federation page improvements
This is almost a copy of https://github.com/Awesome-Technologies/synapse-admin/pull/583 PR,
authored by @rkfg
2024-09-06 00:23:23 +03:00
Aine
cceae77529
fix ci
2024-09-06 00:20:37 +03:00
Aine
1474b46ff0
Put version into the manifest.json on CI builds (Docker, CDN, etc.)
...
This commit fixes the https://github.com/Awesome-Technologies/synapse-admin/issues/507 issue.
While it's a mere workaround, it may help until the
https://github.com/Awesome-Technologies/synapse-admin/issues/507#issuecomment-2063845882 is implemented
2024-09-06 00:15:00 +03:00
Aine
01e3947b22
add missing translations
2024-09-05 23:52:27 +03:00
Borislav Pantaleev
e093bd8625
Fix base_url being undefined on unsuccessful login ( #18 )
...
* Fix base_url being undefined on unsuccessful login
* update readme
2024-09-05 23:23:17 +03:00
Borislav Pantaleev
390aab5ce7
Display actual synapse errors ( #17 )
...
* Display actual synapse errors
* Show actual errors from dataProvider requests
* update README
2024-09-05 21:39:39 +03:00
Aine
fb1a04971b
[skip ci] add justfile
2024-09-05 09:50:06 +03:00
Borislav Pantaleev
eff17a0929
Fix redirect URL after user creation ( #16 )
...
* Fix redirect URL after user creation
* increment version; update readme
2024-09-05 09:02:46 +03:00
Aine
8eaaaa50ec
cleanup .dockerignore
2024-09-03 16:07:43 +03:00
Aine
85b305d117
ensure the latest version is checked out
2024-09-03 16:01:41 +03:00
Aine
4cbea6ffb6
enable cdn
2024-09-03 15:55:29 +03:00
Aine
1967546ae4
enable docker action to see how it goes
2024-09-03 15:50:11 +03:00
Aine
c9a3294852
use different path
2024-09-03 15:44:50 +03:00
Aine
f1839387e2
fix ci
2024-09-03 15:41:38 +03:00
Aine
c8246a1d19
try ci artifacts
2024-09-03 15:40:23 +03:00
Aine
3c6259cc88
Revert "switch from nginx to SWS for serving the app (docker image)", as it causes issues with CDN deploy - workflow
...
should be adjusted first
This reverts commit 317df5af0f
.
2024-09-03 14:04:32 +03:00
Aine
317df5af0f
switch from nginx to SWS for serving the app (docker image)
2024-09-03 14:02:35 +03:00
Aine
2142770a5b
Fix footer overlapping content
...
This is almost a copy of https://github.com/Awesome-Technologies/synapse-admin/issues/574#issue-2406841809 suggestion,
authored by @ll-SKY-ll
2024-09-03 13:46:31 +03:00
Aine
51297b49fc
v0.10.3-etke5
2024-09-03 11:50:14 +03:00
Aine
311cc2a1f4
Merge pull request #9 from etkecc/fix-user-names-in-header
...
Fix user's display name in header on user's page
2024-09-03 11:48:43 +03:00
Aine
6bc760a6fa
Fix user's display name in header on user's page
...
For example, erased users don't have display name, so header was `User "null"`.
With this change, if there is no display name, the MXID will be show, e.g. `User "@user:example.com"`
2024-09-03 11:45:47 +03:00
Aine
50c96cfd77
Add ability to toggle whether to show locked users
...
This is almost copy of https://github.com/Awesome-Technologies/synapse-admin/pull/573 PR,
authored by @huw1990
2024-09-03 11:09:46 +03:00
Aine
7747dc7f28
Add identifier when authorizing with password
...
This PR is almost copy of https://github.com/Awesome-Technologies/synapse-admin/pull/601 PR,
authored by @dklimpel
2024-09-03 10:42:45 +03:00
Aine
678867e981
v0.10.3-etke2
2024-09-03 07:12:36 +03:00
Aine
4a4fae104e
Merge pull request #8 from etkecc/fix-users-edit-tab
...
Fix user's Edit action defualt Tab not being shown
2024-09-03 07:09:35 +03:00
Borislav Pantaleev
265b5157af
Fix user's Edit action defualt Tab not being shown
2024-09-03 00:53:29 +03:00
Aine
b5b593945d
remove configure steps
2024-08-31 21:12:06 +03:00
Aine
15c8a30c92
fix ci
2024-08-31 21:04:39 +03:00
Aine
40c6eb0b95
fix ci
2024-08-31 20:58:07 +03:00
Aine
4c4e3a07f6
fix ci
2024-08-31 20:51:47 +03:00
Aine
35322fa01d
fix ci
2024-08-31 20:35:02 +03:00
Aine
88e88fb6b9
add CDN
2024-08-31 20:28:14 +03:00
Aine
7016e5a349
Update CONTRIBUTING.md
2024-08-31 16:17:28 +03:00
Aine
c7e275d4ec
Create CONTRIBUTING.md
2024-08-31 16:16:22 +03:00
Aine
b1d3340fce
Merge pull request #7 from etkecc/dependabot/npm_and_yarn/micromatch-4.0.8
...
Bump micromatch from 4.0.5 to 4.0.8
2024-08-31 15:27:02 +03:00
dependabot[bot]
2ae5930578
Bump micromatch from 4.0.5 to 4.0.8
...
Bumps [micromatch](https://github.com/micromatch/micromatch ) from 4.0.5 to 4.0.8.
- [Release notes](https://github.com/micromatch/micromatch/releases )
- [Changelog](https://github.com/micromatch/micromatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/micromatch/compare/4.0.5...4.0.8 )
---
updated-dependencies:
- dependency-name: micromatch
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-08-31 12:25:16 +00:00
Aine
9dd6940383
Merge pull request #6 from etkecc/fix-ci
...
update links, allow working without tags
2024-08-31 15:15:27 +03:00
Aine
e2194f5c49
update links, allow working without tags
2024-08-31 15:14:44 +03:00
Aine
e6dcbcb052
Merge pull request #5 from etkecc/fix-ci
...
set fetch-depth
2024-08-31 15:00:40 +03:00