Skip to content
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

FORDRIF-171: Meastro notifications #216

Draft
wants to merge 7 commits into
base: develop
Choose a base branch
from
Draft
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
10 changes: 10 additions & 0 deletions .docker/vhost.conf
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,16 @@ server {
log_not_found off;
}

# Enforce clean URLs
# Removes index.php from urls like:
# www.example.com/index.php/my-page --> www.example.com/my-page
#
# Could be done with 301 for permanent or other redirect codes.
absolute_redirect off;
if ($request_uri ~* "^(.*/)index\.php/(.*)") {
return 301 /$2;
}

error_log /dev/stderr;
access_log /dev/stdout main;
}
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@ Nedenfor ses dato for release og beskrivelse af opgaver som er implementeret.
* Added retry action to error log
* Changed failed jobs view
* Opdaterede til [OS2forms failed jobs to
1.3.0](https://github.com/itk-dev/os2forms_failed_jobs/releases/tag/1.3.0)
1.3.1](https://github.com/itk-dev/os2forms_failed_jobs/releases/tag/1.3.1)
* Opdaterede til [Beskedfordeler
1.1.1](https://github.com/itk-dev/beskedfordeler-drupal/releases/tag/1.1.1)
* Opdaterede til [Os2forms organisation
1.3.0](https://github.com/itk-dev/os2forms_organisation/releases/tag/1.3.0)
* Opdaterede til [Os2forms sync
1.1.3](https://github.com/itk-dev/os2forms_sync/releases/tag/1.1.3)
* Enable os2forms_webform_maps and related contrib modules
* [#216](https://github.com/itk-dev/os2forms_selvbetjening/pull/216)
Updated OS2Forms forløb and Maestro in order to send notifications to
anonymous users.

## [2.4.9] 2023-09-06

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ docker compose exec phpfpm composer coding-standards-check
```

```sh
docker compose run node yarn --cwd /app install
docker compose run node yarn --cwd /app coding-standards-check
docker compose run --rm node yarn --cwd /app install
docker compose run --rm node yarn --cwd /app coding-standards-check
```

## Testing
Expand Down
6 changes: 5 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "vcs",
"url": "https://github.com/itk-dev/os2forms"
}
],
"require": {
Expand All @@ -56,7 +60,6 @@
"drupal/key_auth": "^2.1",
"drupal/keyboard_shortcuts": "^1.1.1",
"drupal/lang_dropdown": "^2.0",
"drupal/maestro": "^3.0",
"drupal/memcache": "^2.5",
"drupal/menu_link_attributes": "^1.3",
"drupal/openid_connect": "^2.0",
Expand All @@ -74,6 +77,7 @@
"itk-dev/os2forms_user_field_lookup": "^1.0",
"itk-dev/serviceplatformen": "dev-feature/guzzle6-adapter as 1.5",
"itk-dev/web_accessibility_statement": "^1.0",
"os2forms/os2forms": "dev-feature/maestro-anonymous-notifications-and-flows as 3.10",
"os2forms/os2forms_digital_post": "^3.0",
"os2forms/os2forms_forloeb_profile": "^1.12",
"os2forms/os2forms_get_organized": "^1.1.2",
Expand Down
Loading
Loading