File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -94,8 +94,10 @@ function shallowClearAndCopy(src, dst) {
9494 * Given a template `/path/:verb` and parameter `{verb:'greet', salutation:'Hello'}` results in
9595 * URL `/path/greet?salutation=Hello`.
9696 *
97- * If the parameter value is prefixed with `@` then the value of that parameter will be taken
98- * from the corresponding key on the data object (useful for non-GET operations).
97+ * If the parameter value is prefixed with `@` then the value for that parameter will be extracted
98+ * from the corresponding property on the `data` object (provided when calling an action method). For
99+ * example, if the `defaultParam` object is `{someParam: '@someProp '}` then the value of `someParam`
100+ * will be `data.someProp`.
99101 *
100102 * @param {Object.<Object>= } actions Hash with declaration of custom action that should extend
101103 * the default set of resource actions. The declaration should be created in the format of {@link
You can’t perform that action at this time.
0 commit comments