Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}

- name: Conditional push for main branch
id: push
if: startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/heads/distro/') || startsWith(github.ref, 'refs/tags/v')
uses: docker/build-push-action@master
with:
Expand Down Expand Up @@ -102,6 +103,7 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}

- name: Conditional push for main branch
id: push
if: startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/heads/distro/') || startsWith(github.ref, 'refs/tags/v')
uses: docker/build-push-action@master
with:
Expand Down
1 change: 1 addition & 0 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*",
"symfony/polyfill-php83": "*",
"symfony/polyfill-php84": "*"
"symfony/polyfill-php83": "*"
},
"scripts": {
"lint": [
Expand Down
105 changes: 91 additions & 14 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

65 changes: 0 additions & 65 deletions src/Command/CompletedQuestionStatCommand.php

This file was deleted.

79 changes: 0 additions & 79 deletions src/Command/LastLoginStatCommand.php

This file was deleted.

7 changes: 6 additions & 1 deletion src/Controller/Admin/DashboardController.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ public function configureMenuItems(): iterable
{
yield MenuItem::linkToRoute('Back to App', 'fa fa-arrow-left', 'app_home');

yield MenuItem::section('Statistics');
yield MenuItem::linkToRoute('Last login at', 'fa fa-sign-in-alt', 'admin_statistic_last_login_at');
yield MenuItem::linkToRoute('Completed Questions', 'fa fa-trophy', 'admin_statistic_completed_questions');
yield MenuItem::linkToRoute('Experience Points', 'fa fa-coins', 'admin_statistic_experience_points');

yield MenuItem::section('User management');
yield MenuItem::linkToCrud('User', 'fa fa-user', User::class);
yield MenuItem::linkToCrud('Group', 'fa fa-users', Group::class);
Expand All @@ -66,7 +71,7 @@ public function configureMenuItems(): iterable
yield MenuItem::linkToCrud('CommentLikeEvent', 'fa fa-thumbs-up', CommentLikeEvent::class);

yield MenuItem::section('Mails');
yield MenuItem::linkToRoute('EmailTemplates', 'fa fa-layer-group', 'app_admin_emailtemplate_index');
yield MenuItem::linkToRoute('EmailTemplates', 'fa fa-layer-group', 'admin_emailtemplate_index');
yield MenuItem::linkToCrud('Email', 'fa fa-envelope', Email::class);
yield MenuItem::linkToCrud('EmailDeliveryEvent', 'fa fa-paper-plane', EmailDeliveryEvent::class);

Expand Down
Loading
Loading