├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── backend ├── APP │ ├── course_list_get │ │ ├── course_list_get.py │ │ └── requirements.txt │ ├── dynamodb_data │ │ ├── restaurant_1.json │ │ ├── restaurant_2.json │ │ ├── restaurant_3.json │ │ ├── restaurant_4.json │ │ ├── restaurant_5.json │ │ └── restaurant_6.json │ ├── reservation_put │ │ ├── flex_message_builder.py │ │ ├── requirements.txt │ │ └── reservation_put.py │ ├── reservation_time_get │ │ ├── requirements.txt │ │ └── reservation_time_get.py │ ├── samconfig.toml │ ├── shop_calendar_get │ │ ├── requirements.txt │ │ └── shop_calendar_get.py │ ├── shop_list_get │ │ ├── requirements.txt │ │ └── shop_list_get.py │ └── template.yaml ├── Layer │ ├── layer │ │ ├── aws │ │ │ └── dynamodb │ │ │ │ └── base.py │ │ ├── common │ │ │ ├── channel_access_token.py │ │ │ ├── common_const.py │ │ │ ├── const.py │ │ │ ├── line.py │ │ │ ├── remind_message.py │ │ │ └── utils.py │ │ ├── requirements.txt │ │ ├── restaurant │ │ │ ├── restaurant_reservation_info.py │ │ │ ├── restaurant_shop_master.py │ │ │ └── restaurant_shop_reservation.py │ │ └── validation │ │ │ ├── param_check.py │ │ │ └── restaurant_param_check.py │ ├── samconfig.toml │ └── template.yaml └── batch │ ├── messaging_put_dynamo │ ├── messaging_put_dynamo.py │ └── requirements.txt │ ├── samconfig.toml │ ├── template.yaml │ └── update_line_access_token │ ├── requirements.txt │ └── update_line_access_token.py ├── docs ├── en │ ├── README_en.md │ ├── back-end-construction.md │ ├── front-end-construction.md │ ├── front-end-development-environment.md │ ├── liff-channel-create.md │ ├── test-data-charge.md │ └── validation.md ├── images │ ├── bot-basic-id-en.png │ ├── channel-access-token-table-record-en.png │ ├── en │ │ ├── bot-basic-id-en.png │ │ ├── channel-access-token-table-record-en.png │ │ ├── end-point-url-description-en.png │ │ ├── end-point-url-editing-en.png │ │ ├── liff-console-en.png │ │ ├── line-channel-create-1-en.png │ │ ├── line-channel-create-2-en.png │ │ ├── line-channel-create-3-en.png │ │ ├── line-channel-create-4-en.png │ │ ├── line-channel-create-add-liff-app-en.png │ │ ├── line-channel-create-add-liff-en.png │ │ ├── line-provider-create-1-en.png │ │ ├── line-provider-create-2-en.png │ │ ├── out-put-api-gateway-cloud-front-en.png │ │ ├── out-put-description-en.png │ │ ├── test-data-charge-en.png │ │ └── test-event-set-en.png │ ├── end-point-url-description-en.png │ ├── end-point-url-editing-en.png │ ├── jp │ │ ├── bot-basic-id.png │ │ ├── channel-access-token-table-record.png │ │ ├── end-point-url-description.png │ │ ├── end-point-url-editing.png │ │ ├── liff-console.png │ │ ├── line-channel-create-1.png │ │ ├── line-channel-create-2.png │ │ ├── line-channel-create-3.png │ │ ├── line-channel-create-4.png │ │ ├── line-channel-create-add-liff-app.png │ │ ├── line-channel-create-add-liff.png │ │ ├── line-provider-create-1.png │ │ ├── line-provider-create-2.png │ │ ├── out-put-api-gateway-cloud-front.png │ │ ├── out-put-description.png │ │ ├── test-data-charge.png │ │ └── test-event-set.png │ ├── liff-console-en.png │ ├── line-channel-create-1-en.png │ ├── line-channel-create-2-en.png │ ├── line-channel-create-3-en.png │ ├── line-channel-create-4-en.png │ ├── line-channel-create-add-liff-app-en.png │ ├── line-channel-create-add-liff-en.png │ ├── line-provider-create-1-en.png │ ├── line-provider-create-2-en.png │ ├── out-put-api-gateway-cloud-front-en.png │ ├── out-put-description-en.png │ ├── test-data-charge-en.png │ └── test-event-set-en.png └── jp │ ├── back-end-construction.md │ ├── front-end-construction.md │ ├── front-end-development-environment.md │ ├── liff-channel-create.md │ ├── test-data-charge.md │ └── validation.md └── front ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── assets ├── css │ └── style.css ├── img │ ├── icon │ │ ├── line.png │ │ └── map.png │ └── line.png └── sass │ ├── _variables.scss │ └── app.scss ├── cert ├── localhost.crt ├── localhost.csr └── localhost.key ├── components ├── ErrorModal.vue └── restaurant │ └── Footer.vue ├── layouts ├── default.vue └── reserve │ └── restaurant.vue ├── locales └── ja.json ├── middleware └── initialize.js ├── nuxt.config.js ├── package-lock.json ├── package.json ├── pages ├── error │ └── 404.vue ├── index.vue └── restaurant │ ├── _code │ └── _id │ │ └── index.vue │ ├── areas.vue │ └── completed.vue ├── plugins ├── amplify.js ├── app │ └── restaurant.js ├── axiosEx.js ├── flashMessage.js ├── i18n.js ├── liff.js ├── localStorage.js ├── noreload.js ├── processing.js ├── sessionStorage.js ├── utils.js └── vuetify.js ├── static └── favicon.ico ├── store └── index.js └── yarn.lock /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/README.md -------------------------------------------------------------------------------- /backend/APP/course_list_get/course_list_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/course_list_get/course_list_get.py -------------------------------------------------------------------------------- /backend/APP/course_list_get/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/APP/dynamodb_data/restaurant_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/dynamodb_data/restaurant_1.json -------------------------------------------------------------------------------- /backend/APP/dynamodb_data/restaurant_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/dynamodb_data/restaurant_2.json -------------------------------------------------------------------------------- /backend/APP/dynamodb_data/restaurant_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/dynamodb_data/restaurant_3.json -------------------------------------------------------------------------------- /backend/APP/dynamodb_data/restaurant_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/dynamodb_data/restaurant_4.json -------------------------------------------------------------------------------- /backend/APP/dynamodb_data/restaurant_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/dynamodb_data/restaurant_5.json -------------------------------------------------------------------------------- /backend/APP/dynamodb_data/restaurant_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/dynamodb_data/restaurant_6.json -------------------------------------------------------------------------------- /backend/APP/reservation_put/flex_message_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/reservation_put/flex_message_builder.py -------------------------------------------------------------------------------- /backend/APP/reservation_put/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/APP/reservation_put/reservation_put.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/reservation_put/reservation_put.py -------------------------------------------------------------------------------- /backend/APP/reservation_time_get/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/APP/reservation_time_get/reservation_time_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/reservation_time_get/reservation_time_get.py -------------------------------------------------------------------------------- /backend/APP/samconfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/samconfig.toml -------------------------------------------------------------------------------- /backend/APP/shop_calendar_get/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/APP/shop_calendar_get/shop_calendar_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/shop_calendar_get/shop_calendar_get.py -------------------------------------------------------------------------------- /backend/APP/shop_list_get/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/APP/shop_list_get/shop_list_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/shop_list_get/shop_list_get.py -------------------------------------------------------------------------------- /backend/APP/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/APP/template.yaml -------------------------------------------------------------------------------- /backend/Layer/layer/aws/dynamodb/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/layer/aws/dynamodb/base.py -------------------------------------------------------------------------------- /backend/Layer/layer/common/channel_access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/layer/common/channel_access_token.py -------------------------------------------------------------------------------- /backend/Layer/layer/common/common_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/layer/common/common_const.py -------------------------------------------------------------------------------- /backend/Layer/layer/common/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/layer/common/const.py -------------------------------------------------------------------------------- /backend/Layer/layer/common/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/layer/common/line.py -------------------------------------------------------------------------------- /backend/Layer/layer/common/remind_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/layer/common/remind_message.py -------------------------------------------------------------------------------- /backend/Layer/layer/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/layer/common/utils.py -------------------------------------------------------------------------------- /backend/Layer/layer/requirements.txt: -------------------------------------------------------------------------------- 1 | line-bot-sdk==1.17.0 2 | line-pay -------------------------------------------------------------------------------- /backend/Layer/layer/restaurant/restaurant_reservation_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/layer/restaurant/restaurant_reservation_info.py -------------------------------------------------------------------------------- /backend/Layer/layer/restaurant/restaurant_shop_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/layer/restaurant/restaurant_shop_master.py -------------------------------------------------------------------------------- /backend/Layer/layer/restaurant/restaurant_shop_reservation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/layer/restaurant/restaurant_shop_reservation.py -------------------------------------------------------------------------------- /backend/Layer/layer/validation/param_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/layer/validation/param_check.py -------------------------------------------------------------------------------- /backend/Layer/layer/validation/restaurant_param_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/layer/validation/restaurant_param_check.py -------------------------------------------------------------------------------- /backend/Layer/samconfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/samconfig.toml -------------------------------------------------------------------------------- /backend/Layer/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/Layer/template.yaml -------------------------------------------------------------------------------- /backend/batch/messaging_put_dynamo/messaging_put_dynamo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/batch/messaging_put_dynamo/messaging_put_dynamo.py -------------------------------------------------------------------------------- /backend/batch/messaging_put_dynamo/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/batch/samconfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/batch/samconfig.toml -------------------------------------------------------------------------------- /backend/batch/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/batch/template.yaml -------------------------------------------------------------------------------- /backend/batch/update_line_access_token/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/batch/update_line_access_token/update_line_access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/backend/batch/update_line_access_token/update_line_access_token.py -------------------------------------------------------------------------------- /docs/en/README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/en/README_en.md -------------------------------------------------------------------------------- /docs/en/back-end-construction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/en/back-end-construction.md -------------------------------------------------------------------------------- /docs/en/front-end-construction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/en/front-end-construction.md -------------------------------------------------------------------------------- /docs/en/front-end-development-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/en/front-end-development-environment.md -------------------------------------------------------------------------------- /docs/en/liff-channel-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/en/liff-channel-create.md -------------------------------------------------------------------------------- /docs/en/test-data-charge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/en/test-data-charge.md -------------------------------------------------------------------------------- /docs/en/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/en/validation.md -------------------------------------------------------------------------------- /docs/images/bot-basic-id-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/bot-basic-id-en.png -------------------------------------------------------------------------------- /docs/images/channel-access-token-table-record-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/channel-access-token-table-record-en.png -------------------------------------------------------------------------------- /docs/images/en/bot-basic-id-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/bot-basic-id-en.png -------------------------------------------------------------------------------- /docs/images/en/channel-access-token-table-record-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/channel-access-token-table-record-en.png -------------------------------------------------------------------------------- /docs/images/en/end-point-url-description-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/end-point-url-description-en.png -------------------------------------------------------------------------------- /docs/images/en/end-point-url-editing-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/end-point-url-editing-en.png -------------------------------------------------------------------------------- /docs/images/en/liff-console-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/liff-console-en.png -------------------------------------------------------------------------------- /docs/images/en/line-channel-create-1-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/line-channel-create-1-en.png -------------------------------------------------------------------------------- /docs/images/en/line-channel-create-2-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/line-channel-create-2-en.png -------------------------------------------------------------------------------- /docs/images/en/line-channel-create-3-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/line-channel-create-3-en.png -------------------------------------------------------------------------------- /docs/images/en/line-channel-create-4-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/line-channel-create-4-en.png -------------------------------------------------------------------------------- /docs/images/en/line-channel-create-add-liff-app-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/line-channel-create-add-liff-app-en.png -------------------------------------------------------------------------------- /docs/images/en/line-channel-create-add-liff-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/line-channel-create-add-liff-en.png -------------------------------------------------------------------------------- /docs/images/en/line-provider-create-1-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/line-provider-create-1-en.png -------------------------------------------------------------------------------- /docs/images/en/line-provider-create-2-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/line-provider-create-2-en.png -------------------------------------------------------------------------------- /docs/images/en/out-put-api-gateway-cloud-front-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/out-put-api-gateway-cloud-front-en.png -------------------------------------------------------------------------------- /docs/images/en/out-put-description-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/out-put-description-en.png -------------------------------------------------------------------------------- /docs/images/en/test-data-charge-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/test-data-charge-en.png -------------------------------------------------------------------------------- /docs/images/en/test-event-set-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/en/test-event-set-en.png -------------------------------------------------------------------------------- /docs/images/end-point-url-description-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/end-point-url-description-en.png -------------------------------------------------------------------------------- /docs/images/end-point-url-editing-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/end-point-url-editing-en.png -------------------------------------------------------------------------------- /docs/images/jp/bot-basic-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/bot-basic-id.png -------------------------------------------------------------------------------- /docs/images/jp/channel-access-token-table-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/channel-access-token-table-record.png -------------------------------------------------------------------------------- /docs/images/jp/end-point-url-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/end-point-url-description.png -------------------------------------------------------------------------------- /docs/images/jp/end-point-url-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/end-point-url-editing.png -------------------------------------------------------------------------------- /docs/images/jp/liff-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/liff-console.png -------------------------------------------------------------------------------- /docs/images/jp/line-channel-create-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/line-channel-create-1.png -------------------------------------------------------------------------------- /docs/images/jp/line-channel-create-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/line-channel-create-2.png -------------------------------------------------------------------------------- /docs/images/jp/line-channel-create-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/line-channel-create-3.png -------------------------------------------------------------------------------- /docs/images/jp/line-channel-create-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/line-channel-create-4.png -------------------------------------------------------------------------------- /docs/images/jp/line-channel-create-add-liff-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/line-channel-create-add-liff-app.png -------------------------------------------------------------------------------- /docs/images/jp/line-channel-create-add-liff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/line-channel-create-add-liff.png -------------------------------------------------------------------------------- /docs/images/jp/line-provider-create-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/line-provider-create-1.png -------------------------------------------------------------------------------- /docs/images/jp/line-provider-create-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/line-provider-create-2.png -------------------------------------------------------------------------------- /docs/images/jp/out-put-api-gateway-cloud-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/out-put-api-gateway-cloud-front.png -------------------------------------------------------------------------------- /docs/images/jp/out-put-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/out-put-description.png -------------------------------------------------------------------------------- /docs/images/jp/test-data-charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/test-data-charge.png -------------------------------------------------------------------------------- /docs/images/jp/test-event-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/jp/test-event-set.png -------------------------------------------------------------------------------- /docs/images/liff-console-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/liff-console-en.png -------------------------------------------------------------------------------- /docs/images/line-channel-create-1-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/line-channel-create-1-en.png -------------------------------------------------------------------------------- /docs/images/line-channel-create-2-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/line-channel-create-2-en.png -------------------------------------------------------------------------------- /docs/images/line-channel-create-3-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/line-channel-create-3-en.png -------------------------------------------------------------------------------- /docs/images/line-channel-create-4-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/line-channel-create-4-en.png -------------------------------------------------------------------------------- /docs/images/line-channel-create-add-liff-app-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/line-channel-create-add-liff-app-en.png -------------------------------------------------------------------------------- /docs/images/line-channel-create-add-liff-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/line-channel-create-add-liff-en.png -------------------------------------------------------------------------------- /docs/images/line-provider-create-1-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/line-provider-create-1-en.png -------------------------------------------------------------------------------- /docs/images/line-provider-create-2-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/line-provider-create-2-en.png -------------------------------------------------------------------------------- /docs/images/out-put-api-gateway-cloud-front-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/out-put-api-gateway-cloud-front-en.png -------------------------------------------------------------------------------- /docs/images/out-put-description-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/out-put-description-en.png -------------------------------------------------------------------------------- /docs/images/test-data-charge-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/test-data-charge-en.png -------------------------------------------------------------------------------- /docs/images/test-event-set-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/images/test-event-set-en.png -------------------------------------------------------------------------------- /docs/jp/back-end-construction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/jp/back-end-construction.md -------------------------------------------------------------------------------- /docs/jp/front-end-construction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/jp/front-end-construction.md -------------------------------------------------------------------------------- /docs/jp/front-end-development-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/jp/front-end-development-environment.md -------------------------------------------------------------------------------- /docs/jp/liff-channel-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/jp/liff-channel-create.md -------------------------------------------------------------------------------- /docs/jp/test-data-charge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/jp/test-data-charge.md -------------------------------------------------------------------------------- /docs/jp/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/docs/jp/validation.md -------------------------------------------------------------------------------- /front/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/.editorconfig -------------------------------------------------------------------------------- /front/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/.eslintrc.json -------------------------------------------------------------------------------- /front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/.gitignore -------------------------------------------------------------------------------- /front/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/assets/css/style.css -------------------------------------------------------------------------------- /front/assets/img/icon/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/assets/img/icon/line.png -------------------------------------------------------------------------------- /front/assets/img/icon/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/assets/img/icon/map.png -------------------------------------------------------------------------------- /front/assets/img/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/assets/img/line.png -------------------------------------------------------------------------------- /front/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/assets/sass/_variables.scss -------------------------------------------------------------------------------- /front/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/assets/sass/app.scss -------------------------------------------------------------------------------- /front/cert/localhost.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/cert/localhost.crt -------------------------------------------------------------------------------- /front/cert/localhost.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/cert/localhost.csr -------------------------------------------------------------------------------- /front/cert/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/cert/localhost.key -------------------------------------------------------------------------------- /front/components/ErrorModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/components/ErrorModal.vue -------------------------------------------------------------------------------- /front/components/restaurant/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/components/restaurant/Footer.vue -------------------------------------------------------------------------------- /front/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/layouts/default.vue -------------------------------------------------------------------------------- /front/layouts/reserve/restaurant.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/layouts/reserve/restaurant.vue -------------------------------------------------------------------------------- /front/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/locales/ja.json -------------------------------------------------------------------------------- /front/middleware/initialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/middleware/initialize.js -------------------------------------------------------------------------------- /front/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/nuxt.config.js -------------------------------------------------------------------------------- /front/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/package-lock.json -------------------------------------------------------------------------------- /front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/package.json -------------------------------------------------------------------------------- /front/pages/error/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/pages/error/404.vue -------------------------------------------------------------------------------- /front/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/pages/index.vue -------------------------------------------------------------------------------- /front/pages/restaurant/_code/_id/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/pages/restaurant/_code/_id/index.vue -------------------------------------------------------------------------------- /front/pages/restaurant/areas.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/pages/restaurant/areas.vue -------------------------------------------------------------------------------- /front/pages/restaurant/completed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/pages/restaurant/completed.vue -------------------------------------------------------------------------------- /front/plugins/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/plugins/amplify.js -------------------------------------------------------------------------------- /front/plugins/app/restaurant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/plugins/app/restaurant.js -------------------------------------------------------------------------------- /front/plugins/axiosEx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/plugins/axiosEx.js -------------------------------------------------------------------------------- /front/plugins/flashMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/plugins/flashMessage.js -------------------------------------------------------------------------------- /front/plugins/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/plugins/i18n.js -------------------------------------------------------------------------------- /front/plugins/liff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/plugins/liff.js -------------------------------------------------------------------------------- /front/plugins/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/plugins/localStorage.js -------------------------------------------------------------------------------- /front/plugins/noreload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/plugins/noreload.js -------------------------------------------------------------------------------- /front/plugins/processing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/plugins/processing.js -------------------------------------------------------------------------------- /front/plugins/sessionStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/plugins/sessionStorage.js -------------------------------------------------------------------------------- /front/plugins/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/plugins/utils.js -------------------------------------------------------------------------------- /front/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/plugins/vuetify.js -------------------------------------------------------------------------------- /front/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/static/favicon.ico -------------------------------------------------------------------------------- /front/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/store/index.js -------------------------------------------------------------------------------- /front/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/line-api-use-case-reservation-Restaurant/HEAD/front/yarn.lock --------------------------------------------------------------------------------