Massedil
108d34305e
fix: Ensure "show existing user" test passes reliably
...
Make the output of mix "mobilizon.users.show" deterministic by sorting actors before displaying them.
Fixes #1799
2025-06-20 17:04:59 +02:00
Massedil
c87f884d0a
fix: interface is well updated after rejecting and accepting invitation in /groups/me page
...
InvitationList.vue now emit accept-invitation and reject-invitation as expected by MyGroups.vue
MyGroups.vue refetch data after receiving the events.
Fixes #1797
2025-06-19 18:35:39 +02:00
Massedil
bfd08493d8
fix: group member list data are always updated
...
Solves one case in #1688
2025-06-19 18:28:58 +02:00
Massedil
7b657c2ac6
fix(backend): catch all remaining errors in the accept_invitation and reject_invitation function
...
Solves the error when accepting an already refused invitation
Solves #1796
2025-06-19 17:15:27 +02:00
Massedil
a0d56b5083
fix: Precise the profile actor name linked to the invitation
...
Permit to know which profile to use when your got the error :
"You can't accept this invitation with this profile"
Solves #1795
2025-06-19 17:02:53 +02:00
Massedil
63758a444f
fix: invitations to groups are immediately shown
...
Solves one case in #1688
2025-06-19 16:41:27 +02:00
Massedil
e606c104c0
fix(identity): reset person when identityName is undefined
...
Solves #1794
2025-06-19 16:17:05 +02:00
Massedil
77a05ac862
fix: solves 3 compilation warnings in feed_token.ex
2025-06-19 15:42:42 +02:00
Massedil
71e692385b
fix: update group page UI on logout to hide member and admin content
...
Solves #1793
2025-06-18 19:30:28 +02:00
Massedil
b357e6bee0
fix: ensure discussions and resources sections update on actor change
...
Solves #1792
2025-06-18 19:30:28 +02:00
Massedil
5486b1fca2
Always fetch the latest posts from the server in the post list
2025-06-18 19:30:28 +02:00
Massedil
1f8dc18feb
show the error to the user when deleting a post
2025-06-18 19:30:28 +02:00
Massedil
d4c28a113a
show the error to the user when updating an event participant
2025-06-18 19:30:28 +02:00
Massedil
72ca4c3e26
show the error to the user when updating or creating a post
2025-06-18 19:30:27 +02:00
Massedil
a60608bd78
fix: update breadcrumbs-nav for posts to ensure consistency
2025-06-18 19:30:27 +02:00
Massedil
dcf9f82156
fix(backend): catch all remaining errors in the update_post function
...
Solves the case where a post is updated without a title
Fixes #1790
2025-06-18 19:30:27 +02:00
Massedil
bd43815fbf
fix: subscribing to an event with a different profile correctly updates the UI
...
Fixes : #1789
2025-06-18 19:30:27 +02:00
Massedil
fbffd55bb3
fix(profile): translation for feeds info is working again
2025-06-18 19:30:27 +02:00
Massedil
b92646aaf7
feat: update profile button label based on isUpdate flag
2025-06-18 19:30:27 +02:00
Laurent GAY
a2af49cbab
correct contrast (in light & dark mode) for EditView - Issue #1786
2025-06-18 17:14:45 +02:00
Laurent GAY
add4291e6f
correct contrast (in light & dark mode) for DateCalendarIcon - Issue #1781
2025-06-18 15:20:47 +02:00
Laurent GAY
efc950ad91
Correction in EditIdentify for correct e2e test failed (issue #1771 )
2025-06-17 20:08:15 +02:00
setop
52ef7fb9af
feat(backend): add html hooks into the app main page
...
html snippets are injected in the main template.
they can be defined in the application config.
documentation to come.
closes #1719
2025-06-16 23:30:51 +02:00
setop
ddbba76887
fix(frontend): remove organizedEvents from LoggedUserMemberships
...
This piece of date is not user in the UI.
LoggedUserMemberships is referenced as LOGGED_USER_MEMBERSHIPS
LOGGED_USER_MEMBERSHIPS is used in views/Group/MyGroups.vue and components/Event/OrganizerPickerWrapper.vue which are not displaying events content nor events count for a group.
closes #1778
2025-06-16 16:47:42 +00:00
Massedil
af7fb2bc15
fix: components not updating correctly when changing language /2
...
Fixes :
- lacking i18n.global.locale.value in datetime.ts
- remove a test in i18n.ts that was always false in past versions of the code because i18n.global.locale is an object and lang is a string
- correctly type createI18n with <false> for legacy to solve wrong TypeScript error (see https://github.com/intlify/vue-i18n/issues/785 , https://github.com/intlify/vue-i18n/issues/889#issuecomment-1017250573 )
Fixes : #1597 , #1772 , and possibly other related issues.
2025-06-16 16:44:23 +02:00
Irodion
f9f31f9f53
Greek language added
2025-06-15 19:07:00 +02:00
Sandro Santilli
9f11a58fd9
Update link to source code
2025-06-15 14:48:03 +00:00
Laurent GAY
533ecbdbba
correct and complete unit tests in Front-End
2025-06-11 18:49:57 +02:00
Massedil
2fa54e8282
fix: components not updating correctly when changing language
...
The issue was caused by incorrect handling of the `i18n.global.locale` value in the Composition API.
When using `createI18n` with `legacy: false`, `i18n.global.locale` is a reactive ref.
Assigning directly with `i18n.global.locale = lang;` breaks reactivity.
The correct usage is : `i18n.global.locale.value = lang;`.
However, this assignment was unnecessary because the value is already updated automatically when the language changes.
All scripts using `const { locale } = useI18n({ useScope: "global" });` are updated to use `locale.value` instead of just `locale`, to ensure correct reactive behavior.
Fixes : #1597 , #1772 , and possibly other related issues.
2025-06-10 22:45:53 +02:00
Massedil
52a6115866
fix: Update Apollo cache after updating admin settings
...
Fixes #1770
2025-06-10 16:05:10 +02:00
Massedil
569d27f0b9
fix: Allow updating media in admin_settings_medias by UUID
...
Fixes #1769
2025-06-10 15:30:31 +02:00
Massedil
54844133cd
fix: There is a uuid on IMedia now
...
Fixes #1767
2025-06-10 15:30:01 +02:00
Laurent GAY
3d80ebadde
CI for vitest
2025-06-10 05:38:49 +02:00
Laurent GAY
740e346469
CI for test frontend
2025-06-10 05:38:49 +02:00
Laurent GAY
f1cbfe4a17
CI with vitest report
2025-06-10 05:38:49 +02:00
Massedil
9adbde944f
Fix (again) link to users in admin dashboard
...
Fixes #1745
2025-06-10 05:38:49 +02:00
Sosthène Guédon
15ca17274f
Fix link to users in admin dashboard
2025-06-10 05:38:49 +02:00
Massedil
73165a0216
Call refresh_instance_actor when an external instance asks to follow us
...
Fixes #1638
2025-06-10 05:38:49 +02:00
Massedil
62a54d42fe
remove refresh_instance_actor
2025-06-10 05:38:49 +02:00
Massedil
0af4745c98
Add relayAddress in the get_instances() reply
...
Solves #1694
2025-06-10 05:38:49 +02:00
Massedil
ef2e3ba5c4
Ensure InstanceFollowStatus is checked with equals and improve CSS.
...
Improves #1690
2025-06-10 05:38:49 +02:00
Massedil
933ee9f959
Return :none instead of nil for follower_status and followed_status
...
Solves #1690
2025-06-10 05:38:49 +02:00
setop
b82b270811
chore: prepare for release
2025-06-05 20:52:09 +02:00
setop
3dce1db6ea
fix(frontend): simple user must not try to fetch feed tokens ; fix #1759
2025-06-05 20:48:17 +02:00
setop
265803cb26
fix(backend): admin cant access profile page
2025-05-28 15:10:44 +02:00
setop
1ad8b268ed
fix(backend): Conversations that include any user who has commented on an event are exposed
2025-05-28 10:28:42 +02:00
Massedil
8bb6b0b97c
refactor: Remove the registerPerson GraphQL query
...
- The first profile is now created after the user email validation
- NavBar is correctly updated when a user is connected but without any profile
- Always fetch identities from the server at login (no cache)
- NoIdentitiesException is thrown again
- Refactor EditIdentity to create the first profile
- Translations updated
- Tests updated
Fixes #1762
2025-05-27 11:18:21 +02:00
Massedil
a9cfcd9e9d
Revert "Merge branch 'make_e2e_tests_work_again' into 'main'"
...
This reverts commit d84b7e3d14 , reversing
changes made to 394e66683a .
2025-05-27 11:18:21 +02:00
Massedil
a50681c9ac
refactor(media): use UUID instead of ID for media retrieval in GraphQL
...
Fixes #1760
2025-05-27 11:18:21 +02:00
Massedil
1b2c55508e
Prevent access to confirmation_token and reset_password_token via GraphQL API
...
Those tokens do not need to be exposed to authenticated users, not even admin users.
Fixes #1761
2025-05-27 11:18:21 +02:00