aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-05-17 18:14:50 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-05-17 18:14:50 -0700
commit3b859aa9ef01d065b40943f5a5701f35217b89f3 (patch)
tree9984a46308a7e3d1979a34686edbac44540fa24d /util
parenta7071b17c0978bf8a68574a178c67a275277177c (diff)
downloadvolse-hubzilla-3b859aa9ef01d065b40943f5a5701f35217b89f3.tar.gz
volse-hubzilla-3b859aa9ef01d065b40943f5a5701f35217b89f3.tar.bz2
volse-hubzilla-3b859aa9ef01d065b40943f5a5701f35217b89f3.zip
Implement permission checking for OAuth clients using the xperm table. Currently 'all' permissions are applied to OAuth clients which gives them the same rights as the channel owner and full access to API functions as the channel owner. However, individual permissions can now be created. These mirror the permission names from the normal permission table (although it isn't required that they do so). Lack of an xp_perm entry for the specified permission and lack of an 'all' override indicates permission denied.
Diffstat (limited to 'util')
-rwxr-xr-xutil/shredder/ShredOAuth.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/shredder/ShredOAuth.sh b/util/shredder/ShredOAuth.sh
index 9828124c7..f39d6f7c4 100755
--- a/util/shredder/ShredOAuth.sh
+++ b/util/shredder/ShredOAuth.sh
@@ -128,7 +128,7 @@ FO_statuses_update () {
$(OAuth_param 'status' "$2")
)
- params[${#params[@]}]=$(OAuth_param 'source' "shred")
+ params[${#params[@]}]=$(OAuth_param 'source' "shredder")
[[ "$3" != "" ]] && params[${#params[@]}]=$(OAuth_param 'in_reply_to_status_id' "$3") && local in_reply_to_status_id=( '--data-urlencode' "in_reply_to_status_id=$3" )