Verified Commit 5469952b authored by Jibran Ijaz's avatar Jibran Ijaz Committed by Jibran Ijaz
Browse files

Issue #3142329 by jibran: Commit module initial codebase

parents
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
enabled_entity_types: {}
+24 −0
Original line number Diff line number Diff line
config_revision.settings:
  type: config_object
  label: Config Revision settings
  mapping:
    enabled_entity_types:
      type: sequence
      label: 'Entity Type IDs'
      sequence:
        type: string
        label: 'Entity Type ID'

config_revision.type.*:
  type: config_entity
  label: 'Config revision type settings'
  mapping:
    id:
      type: string
      label: 'ID'
    label:
      type: label
      label: 'Label'
    description:
      type: text
      label: 'Description'
+11 −0
Original line number Diff line number Diff line
name: Config Revision
type: module
description: 'Allows to create revision for the config entities'
package: Configuration
configure: config_revision.settings
core: 8.x
core_version_requirement: ^8 || ^9
dependencies:
  - drupal:system
test_dependencies:
  - webform:webform
+5 −0
Original line number Diff line number Diff line
config_revision.settings:
  title: 'Configuration revision settings'
  description: 'Enable configuration revision for config entity.'
  route_name: config_revision.settings
  parent: system.admin_config_development
+13 −0
Original line number Diff line number Diff line
entity.config_revision.canonical:
  route_name: entity.config_revision.canonical
  base_route: entity.config_revision.canonical
  title: 'View'
entity.config_revision.edit_form:
  route_name: entity.config_revision.edit_form
  base_route: entity.config_revision.canonical
  title: Edit
entity.config_revision.delete_form:
  route_name: entity.config_revision.delete_form
  base_route: entity.config_revision.canonical
  title: Delete
  weight: 10