-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VACMS-10089: Checkbox to add event to National Outreach Calendar (#15552
) * VACMS-10086: Storing temp hacks for checkbox. * VACMS-10089: Get rid of temp hacks. * VACMS-10089: Add to outreach calendar checkbox now sets the correct value in listing_field - Disable the checkbox if it needs to be. * VACMS-10089: Adds new 'add to outrech calendar' field. * VACMS-10089: Moves properties to constants. - Adds the calendar to the event if the user is a hub only user. * VACMS-10089: Restore revision log to the proper location. * VACMS-10089: Updates style of checkbox and label. * VACMS-10089: Sets default value and modifies the title of the 'add to national outreach calendar' field. * VACMS-10089: Adds missing function return types. * VACMS-10089: Adds defualt value for field_listing if user is Outreach hub only user. - Restore the _none option. * Bump phpstan/phpstan from 1.10.36 to 1.10.37 (#15521) Bumps [phpstan/phpstan](https://github.com/phpstan/phpstan) from 1.10.36 to 1.10.37. - [Release notes](https://github.com/phpstan/phpstan/releases) - [Changelog](https://github.com/phpstan/phpstan/blob/1.11.x/CHANGELOG.md) - [Commits](phpstan/phpstan@1.10.36...1.10.37) --- updated-dependencies: - dependency-name: phpstan/phpstan dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * VACMS-10089: Cypress testing of outreach cal checkbox * VACMS-10089: Add feature toggle for outreach calendar checkbox * VACMS-10089: Remove unnessary cypress tests. * Revert "Bump phpstan/phpstan from 1.10.36 to 1.10.37 (#15521)" This reverts commit 2f81169. * VACMS-10089: Don't change to snekCase cuz it was wrong * VACMS-10089: Rename class property for outreach feature toggle * VACMS-10089: Adjust how the feature toggle is used. * VACMS-10089: Disable some tests that rely on a feature toggle being set. * VACMS-10089: Towards the feature cypress test * VACMS-10089: More cypress. * VACMS-10089: Finish cypress tests woot * VACMS-10089: Remove redundant media upload test --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Daniel Sasser <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c59ac4c
commit a36ad8c
Showing
14 changed files
with
310 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
config/sync/field.field.node.event.field_publish_to_outreach_cal.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
uuid: ba2d9d43-c4b9-4bfd-831a-9ef7544d43f8 | ||
langcode: en | ||
status: true | ||
dependencies: | ||
config: | ||
- field.storage.node.field_publish_to_outreach_cal | ||
- node.type.event | ||
module: | ||
- tmgmt_content | ||
third_party_settings: | ||
tmgmt_content: | ||
excluded: false | ||
id: node.event.field_publish_to_outreach_cal | ||
field_name: field_publish_to_outreach_cal | ||
entity_type: node | ||
bundle: event | ||
label: 'Publish to the National Outreach Calendar' | ||
description: '' | ||
required: false | ||
translatable: false | ||
default_value: | ||
- | ||
value: 0 | ||
default_value_callback: '' | ||
settings: | ||
on_label: 'Yes' | ||
off_label: 'No' | ||
field_type: boolean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
config/sync/field.storage.node.field_publish_to_outreach_cal.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
uuid: ad80a854-7f29-45c1-871a-2d087663f64a | ||
langcode: en | ||
status: true | ||
dependencies: | ||
module: | ||
- node | ||
id: node.field_publish_to_outreach_cal | ||
field_name: field_publish_to_outreach_cal | ||
entity_type: node | ||
type: boolean | ||
settings: { } | ||
module: core | ||
locked: false | ||
cardinality: 1 | ||
translatable: true | ||
indexes: { } | ||
persist_with_no_fields: false | ||
custom_storage: false |
Oops, something went wrong.