Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #328 from jbvanzuylen/documentation-missing-patch-…
…method

PATCH method is missing in documentation
  • Loading branch information
atuttle committed Nov 8, 2016
2 parents f9a3457 + 2f3abc4 commit cdf3761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/docs.cfm
Expand Up @@ -47,7 +47,7 @@
<cfset local.found = { get=false, post=false, put=false, patch=false, delete=false } />
<cfloop from="1" to="#arrayLen(local.docData.functions)#" index="local.f">
<cfset local.func = local.docData.functions[local.f] />
<cfset verbs = "GET,POST,PUT,DELETE,OPTIONS,HEAD" />
<cfset verbs = "GET,POST,PUT,PATCH,DELETE,OPTIONS,HEAD" />
<cfset thisVerb = local.func.name />
<cfif structKeyExists(local.func,"taffy_verb")>
<cfset thisVerb = local.func.taffy_verb />
Expand Down

0 comments on commit cdf3761

Please sign in to comment.