markup errors
This commit is contained in:
parent
b5616789cc
commit
34af3d73dd
|
@ -8,6 +8,7 @@ def manglePluginPerms(apiFunc):
|
||||||
|
|
||||||
When the user which called the apifunc is a plugin this function
|
When the user which called the apifunc is a plugin this function
|
||||||
goes through the following steps:
|
goes through the following steps:
|
||||||
|
|
||||||
- searches the user it should change to
|
- searches the user it should change to
|
||||||
- checks if this user allowed the plugin to "speak for him"
|
- checks if this user allowed the plugin to "speak for him"
|
||||||
- change the request so it looks like the user called himself
|
- change the request so it looks like the user called himself
|
||||||
|
|
|
@ -22,11 +22,6 @@ can be turned off.
|
||||||
|
|
||||||
Plugins
|
Plugins
|
||||||
--------------
|
--------------
|
||||||
- how does authentication work
|
|
||||||
- what is the plugin authentication
|
|
||||||
- when does a plugin need an user?
|
|
||||||
- how to change user names
|
|
||||||
|
|
||||||
k4evers API also has a *plugin*-concept. :class:`Plugins <main.models.Plugin>`
|
k4evers API also has a *plugin*-concept. :class:`Plugins <main.models.Plugin>`
|
||||||
can be allowed by users to buy items on their behalf. To do this the user
|
can be allowed by users to buy items on their behalf. To do this the user
|
||||||
has to allow the plugin via the webinterface. A :class:`PluginPermission
|
has to allow the plugin via the webinterface. A :class:`PluginPermission
|
||||||
|
@ -202,3 +197,4 @@ As one might see, ``curl`` is quite nice for accessing the API. ``curl`` also su
|
||||||
curl --basic http://testplugin:maunz@server/api/buyable/account/balance/?user=frundy
|
curl --basic http://testplugin:maunz@server/api/buyable/account/balance/?user=frundy
|
||||||
# as plugin buy 10 times item with id 3
|
# as plugin buy 10 times item with id 3
|
||||||
curl --basic -X POST --data "amount=10" http://testplugin:maunz@server/api/buyable/item/3/?user=frundy
|
curl --basic -X POST --data "amount=10" http://testplugin:maunz@server/api/buyable/item/3/?user=frundy
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue