Skip to content

Commit

Permalink
Fixed a type mismatch on the Templates List API endpoint.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecx committed Jul 23, 2018
1 parent f97b297 commit 2e9853e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/pandadoc/api/template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Template
def list(token, params = {})
validations = {
q: { required: false, type: String },
tag: { required: false, type: Integer },
tag: { required: false, type: String },
count: { required: false, type: Integer },
page: { required: false, type: Integer }
}
Expand Down
2 changes: 1 addition & 1 deletion lib/pandadoc/api/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Pandadoc
module Api
VERSION = '0.1.1'.freeze
VERSION = '0.1.2'.freeze
end
end

0 comments on commit 2e9853e

Please sign in to comment.