unimal-jp / spear

The spear OSS repository
https://late-cloud-6411.spearly.app
MIT License
10 stars 1 forks source link

Spearly CMS API オプションの修正 / Fix Spearly CMS API Options #206

Closed mantaroh closed 11 months ago

mantaroh commented 11 months ago

変更点

Spearly CMS API のオプションを指定した際に、正しい API オプションの指定が出来ていなかったため修正をしています。

<div cms-item cms-content-type="sample" cms-option-filterBy="test" cms-option-filterValue="value">
....
</div>

本来だったら、 filter_by / filter_value が正しいフィルターのキーになりますが、間違ったオプションになっていたため、フィルターが失敗していました。

Changes

This patch will fix the CMS API option key. Previous implementation is wrong this key.

Example:

<div cms-item cms-content-type="sample" cms-option-filterBy="test" cms-option-filterValue="value">
....
</div>

This sample's key is filterBy and filterValue. This key is wrong, correctly this key should be filter_by / filter_value. As result of this wrong implement, generated page included all of content.