25 lines
886 B
Plaintext
25 lines
886 B
Plaintext
<cfcomponent extends="taffy.core.resource" taffy_uri="/artist/{artistId}/art/{artId}">
|
|
|
|
<cfset variables.dummyData = StructNew() />
|
|
<cfset variables.dummyData.whatever = true />
|
|
<cfset variables.dummyData.phone = encode.string(5558675309) />
|
|
<cfset variables.dummyData.phoneNumeric = 5558675309 />
|
|
|
|
<cffunction name="get" access="public" output="false">
|
|
<cfreturn representationOf(variables.dummyData).withStatus(200) />
|
|
</cffunction>
|
|
|
|
<cffunction name="post" access="public" output="false">
|
|
<cfreturn representationOf(variables.dummyData).withStatus(200) />
|
|
</cffunction>
|
|
|
|
<cffunction name="put" access="public" output="false">
|
|
<cfreturn representationOf(variables.dummyData).withStatus(200) />
|
|
</cffunction>
|
|
|
|
<cffunction name="delete" access="public" output="false">
|
|
<cfreturn representationOf(variables.dummyData).withStatus(200) />
|
|
</cffunction>
|
|
|
|
</cfcomponent>
|