diff options
author | Evan Prodromou <evan@status.net> | 2010-01-21 11:32:01 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-21 11:32:01 -0500 |
commit | e5eb95ab59598392bfae99adac1ac0716397ba13 (patch) | |
tree | d0008f77e6746113e669b195a975fb4ea4301264 /actions/apitimelineretweetsofme.php | |
parent | 4175ec7c6eeb0a5308341327e0e768a6489320e8 (diff) |
retweet API methods are readonly
Diffstat (limited to 'actions/apitimelineretweetsofme.php')
-rw-r--r-- | actions/apitimelineretweetsofme.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/actions/apitimelineretweetsofme.php b/actions/apitimelineretweetsofme.php index 6ca2c779c..e4b09e9bd 100644 --- a/actions/apitimelineretweetsofme.php +++ b/actions/apitimelineretweetsofme.php @@ -123,4 +123,19 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction break; } } + + /** + * Return true if read only. + * + * MAY override + * + * @param array $args other arguments + * + * @return boolean is read only action? + */ + + function isReadOnly($args) + { + return true; + } } |