Skip to content

Added personalized view #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 33 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
05de6a5
Added personalized view
martinyde Apr 11, 2025
5b3b783
Removed update hooks
martinyde Apr 11, 2025
9b76e1c
Applied coding standards
martinyde May 2, 2025
80ac2bc
Applied coding style
martinyde May 2, 2025
76d915d
Applied coding style
martinyde May 2, 2025
cce79fc
Updated webform label
martinyde May 2, 2025
1446ea9
Applied coding styles
martinyde May 2, 2025
3f375ac
Changed github action
martinyde May 2, 2025
67f0216
Applied coding styles
martinyde May 2, 2025
c84b9b2
Applied coding styles
martinyde May 2, 2025
8c8c6c0
Applied coding styles
martinyde May 2, 2025
bc2759c
ReAdd retry operation
martinyde May 2, 2025
07eee29
Updated changelog
martinyde May 2, 2025
57e0d88
Update src/Form/HandleJobManually.php
martinyde May 6, 2025
afda0f0
Update src/Form/HandleJobManually.php
martinyde May 6, 2025
d60c8d0
Update src/Plugin/views/field/MaxRetries.php
martinyde May 6, 2025
3c62bf4
Update src/Plugin/views/field/NextAttempt.php
martinyde May 6, 2025
fa1e26e
Update templates/job-type-retry-strategy.html.twig
martinyde May 6, 2025
9e782be
Added intro text for personalized view
martinyde May 7, 2025
ef4c18b
Added intro text for personalized view
martinyde May 7, 2025
5af1de3
Added alter hook for advanced queue jobs
martinyde May 19, 2025
4c874c5
Added default definition for queued email
martinyde May 19, 2025
93d222b
Changed delay
martinyde May 20, 2025
ec54f75
Updated plugins
martinyde May 27, 2025
1aad75c
Updated bulk actions to use confirmForm
martinyde May 27, 2025
1f6a4e2
Added bulkConfirmForm route and views submission created field
martinyde May 27, 2025
69c7505
Added filter and field for created field
martinyde May 27, 2025
5004496
Added batch processing for queue handling
martinyde May 27, 2025
d5c0406
Updated Date filter
martinyde May 28, 2025
d2e0b3b
Applied coding standards
martinyde May 28, 2025
a6a22a8
Applied coding styles
martinyde May 28, 2025
5df873e
Applied coding styles
martinyde May 28, 2025
d4a594b
updated view
martinyde May 28, 2025
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
6 changes: 3 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.2', '8.3' ]
php-versions: [ '8.3' ]
dependency-version: [ prefer-lowest, prefer-stable ]
steps:
- uses: actions/checkout@master
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.2', '8.3' ]
php-versions: [ '8.3' ]
dependency-version: [ prefer-lowest, prefer-stable ]
steps:
- uses: actions/checkout@master
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.2', '8.3' ]
php-versions: [ '8.3' ]
dependency-version: [ prefer-lowest, prefer-stable ]
steps:
- uses: actions/checkout@master
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ Nedenfor ses dato for release og beskrivelse af opgaver som er implementeret.

## [Under udvikling]

## [1.7.0] 2025-05-02

* Updaterer minimal php version
* Tilføj peronaliseret view til error log
* Tilføj nye fields til advanced queue views
* Tilføj nye filtre til advanced queue views
* Tilføj side til "Mine form fejl"
* Tilføj manuel håndtering af fejlede jobs.
* Ændre retry håndtering

## [1.6.0] 2025-03-11

* Tillod jobs uden relation til indsendelser at blive genkørt.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}
],
"require": {
"php": "^8.2",
"php": "^8.3",
"drupal/advancedqueue": "^1.0",
"drush/drush": "^11 || ^12",
"drupal/webform": "^6.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
langcode: en
status: true
dependencies:
module:
- os2forms_failed_jobs
enforced:
module:
- os2forms_failed_jobs
id: advancedqueue_handle_manually_action
label: 'Handle manually'
type: advancedqueue_queue
plugin: advancedqueue_handle_manually_action
configuration: { }
Loading
Loading