Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/ecards'
Browse files Browse the repository at this point in the history
  • Loading branch information
ikorgik committed Mar 7, 2019
2 parents c072e70 + ea007e7 commit 4a1696e
Show file tree
Hide file tree
Showing 14 changed files with 140 additions and 7 deletions.
22 changes: 22 additions & 0 deletions docs/development_falcon.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,25 @@ There are two ways to place new categories and items on the dashboard:
`Config menu link <https://www.drupal.org/project/menu_link_config>`_ module.
Preferred option for Falcon features.
#. Add normal menu items (content level) and flush cache.


Version releases
----------------

Create new release
~~~~~~~~~~~~~~~~~~

You can read official Github `instruction <https://help.github.com/en/articles/creating-releases>`_ for more info how to create releases.

Requirements
~~~~~~~~~~~~
- New release should be based on master branch.
- New release tag should look like "1.0.0".

Given a version number MAJOR.MINOR.PATCH, increment the:

- MAJOR version when you make incompatible API changes.
- MINOR version when you add functionality in a backwards-compatible manner.
- PATCH version when you make backwards-compatible bug fixes.

You can read `documentation <https://semver.org/>`_ for more info about version standardization.
3 changes: 2 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ Follow instructions in :doc:`install` section.
roles
payments
environment
content
content
metatags
2 changes: 1 addition & 1 deletion docs/metatags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ Metatags
========

Falcon provides metatags. You can create new metatag field into entity type, and you can get `metatag_normalized` key from jsonApi.
Also falcon use _consumers_token:https://www.drupal.org/project/consumers_token module that provides a token [consumers:current-name] for consumers name replacement depending on what consumer has requested the token.
Also falcon use `consumers_token <https://www.drupal.org/project/consumers_token>`_ module that provides a token [consumers:current-name] for consumers name replacement depending on what consumer has requested the token.
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ expanded: false
menu_name: falcon-dashboard
enabled: true
parent: falcon.dashboard
weight: 0
weight: -48
description: 'Create and manage appeals.'
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ id: dashboard_donations_category
title: Donations
route_name: entity.commerce_order.collection
route_parameters: { }
options: { }
options:
query:
type: donation
expanded: false
menu_name: falcon-dashboard
enabled: true
parent: falcon.dashboard
weight: 2
weight: -45
description: 'Manage donations.'
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ expanded: false
menu_name: falcon-dashboard
enabled: true
parent: falcon.dashboard
weight: 0
weight: -47
description: 'Example menu category.'
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
langcode: en
status: true
dependencies: { }
id: browse_all_gift_cards
title: 'Browse all Gift Cards'
route_name: eck.entity.gift_cards.list
route_parameters: { }
options: { }
expanded: false
menu_name: falcon-dashboard
enabled: true
parent: 'menu_link_config:gifts'
weight: 0
description: 'Overview all cards of gift.'
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
langcode: en
status: true
dependencies: { }
id: browse_all_gifts
title: 'Browse all Gifts'
route_name: entity.commerce_product.collection
route_parameters: { }
options:
query:
type: gift
expanded: false
menu_name: falcon-dashboard
enabled: true
parent: 'menu_link_config:gifts'
weight: -48
description: 'Overview and search products of Gift.'
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
langcode: en
status: true
dependencies: { }
id: browse_gifts_orders
title: 'Browse Gifts orders'
route_name: entity.commerce_order.collection
route_parameters: { }
options:
query:
type: gift
expanded: false
menu_name: falcon-dashboard
enabled: true
parent: 'menu_link_config:gifts'
weight: -46
description: 'Overview and search orders of Gift.'
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
langcode: en
status: true
dependencies: { }
id: create_gift
title: 'Create Gift'
route_name: entity.commerce_product.add_form
route_parameters:
commerce_product_type: gift
options: { }
expanded: false
menu_name: falcon-dashboard
enabled: true
parent: 'menu_link_config:gifts'
weight: -50
description: 'Create new gift.'
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
langcode: en
status: true
dependencies: { }
id: gifts
title: Gifts
route_name: entity.commerce_product.collection
route_parameters: { }
options:
query:
type: gift
expanded: false
menu_name: falcon-dashboard
enabled: true
parent: falcon.dashboard
weight: -46
description: 'Manage gifts.'
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
langcode: en
status: true
dependencies: { }
id: browse_all_gifts_bundles
title: 'Browse all Gifts bundles'
route_name: entity.commerce_product.collection
route_parameters: { }
options:
query:
type: gifts_bundle
expanded: false
menu_name: falcon-dashboard
enabled: true
parent: 'menu_link_config:gifts'
weight: -47
description: 'Overview and search products of Gifts bundle.'
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
langcode: en
status: true
dependencies: { }
id: create_gifts_bundle
title: 'Create Gifts bundle'
route_name: entity.commerce_product.add_form
route_parameters:
commerce_product_type: gifts_bundle
options: { }
expanded: false
menu_name: falcon-dashboard
enabled: true
parent: 'menu_link_config:gifts'
weight: -49
description: 'Create new gifts bundle.'
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ expanded: false
menu_name: falcon-dashboard
enabled: true
parent: falcon.dashboard
weight: 30
weight: -44
description: 'Create and manage users.'

0 comments on commit 4a1696e

Please sign in to comment.