diff options
author | Evan Prodromou <evan@status.net> | 2010-01-20 17:00:42 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-20 17:00:42 -0500 |
commit | 9e3013c6b613528eac4ace08524360330910801e (patch) | |
tree | d58758491a724305ad7bac1dbfd691033b5f402d /actions/apitimelineretweetedtome.php | |
parent | 10f21e1f414dfd9a369df8b1c71aa2e099fca9f2 (diff) |
mark retweet api actions read-only where applicable
Diffstat (limited to 'actions/apitimelineretweetedtome.php')
-rw-r--r-- | actions/apitimelineretweetedtome.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/actions/apitimelineretweetedtome.php b/actions/apitimelineretweetedtome.php index 113ab96d2..66f06cc0e 100644 --- a/actions/apitimelineretweetedtome.php +++ b/actions/apitimelineretweetedtome.php @@ -122,4 +122,19 @@ class ApiTimelineRetweetedToMeAction 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 false; + } } |