Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ### Mealie ###
- # Today
- - platform: rest
- resource: http://192.168.1.142:9090/api/groups/mealplans
- name: mealie_mealplan_day0
- scan_interval: 100
- headers:
- Authorization: !secret mealie_api_token
- params:
- start: >
- {{ now().strftime('%Y-%m-%d') }}
- limit: >
- {{ now().strftime('%Y-%m-%d') }}
- json_attributes_path: "$.[0].recipe"
- json_attributes:
- - id
- - name
- - slug
- - image
- value_template: "{{ value_json.date }}"
- # Tomorrow
- - platform: rest
- resource: http://192.168.1.142:9090/api/groups/mealplans
- name: mealie_mealplan_day1
- scan_interval: 100
- headers:
- Authorization: !secret mealie_api_token
- params:
- start: >
- {{ (now() + timedelta(days = 1)).strftime('%Y-%m-%d') }}
- limit: >
- {{ (now() + timedelta(days = 1)).strftime('%Y-%m-%d') }}
- json_attributes_path: "$.[0].recipe"
- json_attributes:
- - id
- - name
- - slug
- - image
- value_template: "{{ value_json.date }}"
Advertisement
Add Comment
Please, Sign In to add comment