From ac3e9fb7953e5ee454455a6f20b3c30b002230ef Mon Sep 17 00:00:00 2001 From: Daniel Nitsikopoulos Date: Sat, 29 Jul 2023 18:15:08 +1000 Subject: [PATCH] Use param type for cache field --- app/entities/bookmark_request.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/entities/bookmark_request.rb b/app/entities/bookmark_request.rb index e7818c1..43bb89b 100644 --- a/app/entities/bookmark_request.rb +++ b/app/entities/bookmark_request.rb @@ -4,7 +4,7 @@ module Adamantium attribute :h, Types::Coercible::String attribute :action, Types::Coercible::String.optional attribute :name, Types::Coercible::String - attribute :cache, Types::Bool.optional + attribute :cache, Types::Params::Bool.optional attribute :content, Types::Coercible::String.optional attribute :url, Types::Coercible::String attribute :slug, Types::Coercible::String