From dc6758a2b4975c3bc563e6117599413217d280f0 Mon Sep 17 00:00:00 2001 From: Haruhiko Takada Date: Sun, 11 Aug 2024 18:25:47 +0900 Subject: [PATCH] =?UTF-8?q?YAML=20=E3=83=95=E3=82=A1=E3=82=A4=E3=83=AB?= =?UTF-8?q?=E5=AE=9A=E7=BE=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- actions.yaml | 22 ++++++++++++++++++++++ screens.yaml | 7 +++++++ 2 files changed, 29 insertions(+) create mode 100644 actions.yaml create mode 100644 screens.yaml diff --git a/actions.yaml b/actions.yaml new file mode 100644 index 0000000..aaf076e --- /dev/null +++ b/actions.yaml @@ -0,0 +1,22 @@ +- description: ランドマーク一覧画面 + class: LandmarkList + value: LandmarkList + actions: + - description: いいねを付けたランドマークのみを表示するスイッチ + class: FavoritesOnlySwitch + value: FavoritesOnlySwitch + parameters: + - variable: favoritesOnly + value: favorites_only + type: boolean +- description: ランドマーク詳細画面 + class: LandmarkDetail + value: LandmarkDetail + actions: + - description: いいねを付ける + class: FavoriteOn + value: FavoriteOn + coversion: true + - description: いいねを解除する + class: FavoriteOff + value: FavoriteOff diff --git a/screens.yaml b/screens.yaml new file mode 100644 index 0000000..e6abfd0 --- /dev/null +++ b/screens.yaml @@ -0,0 +1,7 @@ +- description: ランドマーク一覧画面 + class: LandmarkList + value: LandmarkList + conversion: true +- description: ランドマーク詳細画面 + class: LandmarkDetail + value: LandmarkDetail