diff options
author | Zach Copley <zach@status.net> | 2010-01-14 02:38:01 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-14 02:41:11 +0000 |
commit | 33df3922895e61e4e347a19acba67983ed1c4c23 (patch) | |
tree | 7d949245c1c5f5e6fb0bb546dea635c3b2eb3bcc /actions/apiaccountverifycredentials.php | |
parent | c28c511438389ee160d29f29c0780dd50c81e9d5 (diff) |
- Had to remove checking read vs. read-write in OAuth authenticated methods
- Will now pick up source attr from OAuth app
Diffstat (limited to 'actions/apiaccountverifycredentials.php')
-rw-r--r-- | actions/apiaccountverifycredentials.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/actions/apiaccountverifycredentials.php b/actions/apiaccountverifycredentials.php index 08b201dbf..1095d5162 100644 --- a/actions/apiaccountverifycredentials.php +++ b/actions/apiaccountverifycredentials.php @@ -82,4 +82,18 @@ class ApiAccountVerifyCredentialsAction extends ApiAuthAction } + /** + * Is this action read only? + * + * @param array $args other arguments + * + * @return boolean true + * + **/ + + function isReadOnly($args) + { + return true; + } + } |