Skip to content

Commit

Permalink
Minor addendum to #238
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Tuttle committed Nov 13, 2014
1 parent 7412d99 commit 29f65d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/dashboard.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@
<cfset local.func = local.docData.functions[local.f] />
<cfset local.found[local.func.name] = true />
<!--- exclude methods that are not exposed as REST verbs --->
<cfif !listFindNoCase('get,post,put,delete',local.func.name) AND !structKeyExists(local.func,'taffy_verb') AND !structKeyExists(local.func,'taffy:verb')>
<cfif !listFindNoCase('get,post,put,delete,patch',local.func.name) AND !structKeyExists(local.func,'taffy_verb') AND !structKeyExists(local.func,'taffy:verb')>
<cfscript>continue;</cfscript><!--- stupid CF8 --->
</cfif>
<div class="col-md-12"><strong>#local.func.name#</strong></div>
Expand Down

0 comments on commit 29f65d0

Please sign in to comment.