summaryrefslogtreecommitdiff
path: root/actions/apigroupshow.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-01-28 00:39:40 +0000
committerZach Copley <zach@status.net>2010-01-28 00:44:55 +0000
commit420ae06faf033b799c677845045b50b259801dbd (patch)
tree674db4c1fc19d3284286093a3a6d68c87e0acfdd /actions/apigroupshow.php
parentfe531dfc6c9c700b5566db634a9078d4b4b87d87 (diff)
These API methods should return true for ->isReadOnly($args)!
Diffstat (limited to 'actions/apigroupshow.php')
-rw-r--r--actions/apigroupshow.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php
index 7aa49b1bf..95d6f95af 100644
--- a/actions/apigroupshow.php
+++ b/actions/apigroupshow.php
@@ -149,4 +149,19 @@ class ApiGroupShowAction extends ApiPrivateAuthAction
return null;
}
+ /**
+ * Return true if read only.
+ *
+ * MAY override
+ *
+ * @param array $args other arguments
+ *
+ * @return boolean is read only action?
+ */
+
+ function isReadOnly($args)
+ {
+ return true;
+ }
+
}