/snippets/Taffy/Resource-script.xml
http://github.com/atuttle/Taffy · XML · 26 lines · 21 code · 5 blank · 0 comment · 0 complexity · bb9203677668de4f7021905b0e2dc362 MD5 · raw file
- <?xml version="1.0" encoding="utf-8"?>
- <snippet filetemplate="false" extension="">
- <name>Resource-script</name>
- <help>Creates a Taffy Resource CFC using cfscript syntax</help>
- <starttext><![CDATA[component extends="taffy.core.resource" taffy_uri="]]></starttext>
- <endtext><![CDATA["
- {
-
- public function get() output="false" hint="read"
- {
- }
-
- public function put() output="false" hint="update"
- {
- }
-
- public function post() output="false" hint="create"
- {
- }
-
- public function delete() output="false" hint="delete"
- {
- }
-
- }]]></endtext>
- </snippet>