can create communities at least now, and delete them, but that's not tested. Pagination next, then I'll do options stuff so you can actually add descriptions and images.
This commit is contained in:
@@ -20,4 +20,7 @@ pending()
|
||||
n) namedget rejected "Why not?" true; put "admin/registration_application/approve" '{"id":'$appid',"deny_reason":"'$rejected'","approve":false}';;
|
||||
esac
|
||||
done
|
||||
}
|
||||
}
|
||||
|
||||
addadmin(){ echo "stub"; }
|
||||
remadmin(){ echo "stub"; }
|
@@ -1,4 +1,10 @@
|
||||
#Community hoardan
|
||||
follow(){ post "community/follow" '{"community_id":'$1',"follow":true}'; }
|
||||
unfollow(){ post "community/follow" '{"community_id":'$1',"follow":false}'; }
|
||||
following(){ echo "use <home> instead"; } # Maybe this will help.
|
||||
following(){ echo "use <home> instead"; } # Maybe this will help.
|
||||
|
||||
comcreate(){ namedget desc "The community's display name (can be edited later)"; post "community" '{"name":"'$1'","title":"'"$desc"'"}'; }
|
||||
comedit(){ echo "stub"; }
|
||||
comdelete(){ namedget confirm "are you sure? (y/n)"; if [ confirm == "y" ]; then post "community/delete" '{"community_id":"'$1'","deleted":true}'; fi; }
|
||||
addmod(){ echo "stub"; }
|
||||
remmod(){ echo "stub"; }
|
Reference in New Issue
Block a user