mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-12-02 16:38:27 +00:00
Compare commits
1 Commits
475-sugges
...
460-displa
| Author | SHA1 | Date | |
|---|---|---|---|
| cacb7a0340 |
7
.changes/unreleased/Fixed-20251118-140559.yaml
Normal file
7
.changes/unreleased/Fixed-20251118-140559.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
kind: Fixed
|
||||||
|
body: |
|
||||||
|
Associate activity's creator as a participant by default, and retro-actively append the creator to each activity
|
||||||
|
time: 2025-11-18T14:05:59.904993123+01:00
|
||||||
|
custom:
|
||||||
|
Issue: "466"
|
||||||
|
SchemaChange: Add columns or tables
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixed
|
|
||||||
body: Do not suggest a user that is no longer active in the activity form.
|
|
||||||
time: 2025-12-01T18:58:59.410998029+01:00
|
|
||||||
custom:
|
|
||||||
Issue: "475"
|
|
||||||
SchemaChange: No schema change
|
|
||||||
6
.changes/unreleased/UX-20251119-153706.yaml
Normal file
6
.changes/unreleased/UX-20251119-153706.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: UX
|
||||||
|
body: Alphabetically order userJobs and mainLocations within user creation form
|
||||||
|
time: 2025-11-19T15:37:06.393470745+01:00
|
||||||
|
custom:
|
||||||
|
Issue: "470"
|
||||||
|
SchemaChange: No schema change
|
||||||
6
.changes/unreleased/UX-20251124-151115.yaml
Normal file
6
.changes/unreleased/UX-20251124-151115.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: UX
|
||||||
|
body: Change position and color of confirm parcours button
|
||||||
|
time: 2025-11-24T15:11:15.960279853+01:00
|
||||||
|
custom:
|
||||||
|
Issue: "437"
|
||||||
|
SchemaChange: No schema change
|
||||||
6
.changes/unreleased/UX-20251124-164723.yaml
Normal file
6
.changes/unreleased/UX-20251124-164723.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: UX
|
||||||
|
body: Display calendar item info on cancel page
|
||||||
|
time: 2025-11-24T16:47:23.020302054+01:00
|
||||||
|
custom:
|
||||||
|
Issue: "460"
|
||||||
|
SchemaChange: No schema change
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
## v4.8.2 - 2025-11-26
|
|
||||||
### Fixed
|
|
||||||
* ([#466](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/466)) Associate activity's creator as a participant by default, and retro-actively append the creator to each activity
|
|
||||||
|
|
||||||
|
|
||||||
**Schema Change**: Add columns or tables
|
|
||||||
* Fix template parameter for update_multiple route on event participations
|
|
||||||
### UX
|
|
||||||
* ([#470](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/470)) Alphabetically order userJobs and mainLocations within user creation form
|
|
||||||
* ([#437](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/437)) Change position and color of confirm parcours button
|
|
||||||
@@ -6,15 +6,6 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|||||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
and is generated by [Changie](https://github.com/miniscruff/changie).
|
||||||
|
|
||||||
|
|
||||||
## v4.8.2 - 2025-11-26
|
|
||||||
### Fixed
|
|
||||||
* ([#466](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/466)) Associate activity's creator as a participant by default, and retro-actively append the creator to each activity
|
|
||||||
**Schema Change**: Add columns or tables
|
|
||||||
* Fix template parameter for update_multiple route on event participations
|
|
||||||
### UX
|
|
||||||
* ([#470](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/470)) Alphabetically order userJobs and mainLocations within user creation form
|
|
||||||
* ([#437](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/437)) Change position and color of confirm parcours button
|
|
||||||
|
|
||||||
## v4.8.1 - 2025-11-20
|
## v4.8.1 - 2025-11-20
|
||||||
### Fixed
|
### Fixed
|
||||||
* Insert name of file as the document title when uploading
|
* Insert name of file as the document title when uploading
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ const store = createStore({
|
|||||||
}
|
}
|
||||||
// console.log("suggested users", suggestedUsers);
|
// console.log("suggested users", suggestedUsers);
|
||||||
|
|
||||||
return suggestedUsers.filter((u) => u.enabled === true);
|
return suggestedUsers;
|
||||||
},
|
},
|
||||||
suggestedResources(state) {
|
suggestedResources(state) {
|
||||||
// const resources = state.activity.accompanyingPeriod.resources;
|
// const resources = state.activity.accompanyingPeriod.resources;
|
||||||
|
|||||||
@@ -162,6 +162,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class="item-row separator">
|
<div class="item-row separator">
|
||||||
|
{% if show_record_actions is not defined or show_record_actions %}
|
||||||
<ul class="record_actions">
|
<ul class="record_actions">
|
||||||
{% if is_granted('CHILL_CALENDAR_DOC_EDIT', calendar) and calendar.status is not constant('STATUS_CANCELED', calendar) %}
|
{% if is_granted('CHILL_CALENDAR_DOC_EDIT', calendar) and calendar.status is not constant('STATUS_CANCELED', calendar) %}
|
||||||
{% if templates|length == 0 %}
|
{% if templates|length == 0 %}
|
||||||
@@ -245,7 +246,7 @@
|
|||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</ul>
|
</ul>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -6,6 +6,10 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
|
<div class="flex-table list-records context-accompanyingCourse">
|
||||||
|
{{ include('@ChillCalendar/Calendar/_list.html.twig', {context: 'accompanying_course', show_record_actions: false}) }}
|
||||||
|
</div>
|
||||||
|
|
||||||
{{ form_start(form) }}
|
{{ form_start(form) }}
|
||||||
|
|
||||||
{{ form_row(form.cancelReason) }}
|
{{ form_row(form.cancelReason) }}
|
||||||
|
|||||||
@@ -6,6 +6,10 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
|
<div class="flex-table list-records context-person">
|
||||||
|
{{ include('@ChillCalendar/Calendar/_list.html.twig', {context: 'person', show_record_actions: false}) }}
|
||||||
|
</div>
|
||||||
|
|
||||||
{{ form_start(form) }}
|
{{ form_start(form) }}
|
||||||
|
|
||||||
{{ form_row(form.cancelReason) }}
|
{{ form_row(form.cancelReason) }}
|
||||||
|
|||||||
@@ -486,7 +486,7 @@ final class ParticipationController extends AbstractController
|
|||||||
|
|
||||||
return $this->redirectToRoute(
|
return $this->redirectToRoute(
|
||||||
'chill_event__event_show',
|
'chill_event__event_show',
|
||||||
['id' => $event->getId()]
|
['event_id' => $event->getId()]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -41,7 +41,6 @@ class UserNormalizer implements ContextAwareNormalizerInterface, NormalizerAware
|
|||||||
'isAbsent' => false,
|
'isAbsent' => false,
|
||||||
'absenceStart' => null,
|
'absenceStart' => null,
|
||||||
'absenceEnd' => null,
|
'absenceEnd' => null,
|
||||||
'enabled' => true,
|
|
||||||
];
|
];
|
||||||
|
|
||||||
public function __construct(private readonly UserRender $userRender, private readonly ClockInterface $clock) {}
|
public function __construct(private readonly UserRender $userRender, private readonly ClockInterface $clock) {}
|
||||||
@@ -109,7 +108,6 @@ class UserNormalizer implements ContextAwareNormalizerInterface, NormalizerAware
|
|||||||
'isAbsent' => $object->isAbsent(),
|
'isAbsent' => $object->isAbsent(),
|
||||||
'absenceStart' => $this->normalizer->normalize($object->getAbsenceStart(), $format, $absenceDatesContext),
|
'absenceStart' => $this->normalizer->normalize($object->getAbsenceStart(), $format, $absenceDatesContext),
|
||||||
'absenceEnd' => $this->normalizer->normalize($object->getAbsenceEnd(), $format, $absenceDatesContext),
|
'absenceEnd' => $this->normalizer->normalize($object->getAbsenceEnd(), $format, $absenceDatesContext),
|
||||||
'enabled' => $object->isEnabled(),
|
|
||||||
];
|
];
|
||||||
|
|
||||||
if ('docgen' === $format) {
|
if ('docgen' === $format) {
|
||||||
|
|||||||
Reference in New Issue
Block a user