diff --git a/k4ever/api2/urls.py b/k4ever/api2/urls.py index bfd4eba..2d8ce8f 100644 --- a/k4ever/api2/urls.py +++ b/k4ever/api2/urls.py @@ -49,9 +49,7 @@ urlpatterns = patterns('', url(r'buyable/history/?$', historyRes), url(r'account/transactions/transact/?$', transactionTransactRes), - url(r'account/transfers/transfer/?$', transactionTransactRes), url(r'account/transactions/types/?$', transactionTypeRes), - url(r'account/transfers/types/?$', transactionTypeRes), url(r'account/transactions/virtual/?$', transactionVirtualRes), url(r'account/balance/?$', accountBalanceRes), diff --git a/k4ever/docs/django/api.rst b/k4ever/docs/django/api.rst index f91b2ef..7099880 100644 --- a/k4ever/docs/django/api.rst +++ b/k4ever/docs/django/api.rst @@ -99,8 +99,8 @@ to the handler or the responsible method for more documentation or code. ========= ================= **account/** - **transactions/** or **transfers/** - :class:`transact/ or transfer/ ` + **transactions/** + :class:`transact/ ` :func:`GET ` List the user's last transactions @@ -120,32 +120,32 @@ to the handler or the responsible method for more documentation or code. type [required] Type of transaction (id) ========= ================= - :class:`types/ ` - :func:`GET ` - List all available :class:`Transaction Types ` - :class:`balance/ ` - :func:`GET ` - Get user's account balance - :class:`virtual/ ` - :func:`GET ` - Return the user's last virtual transactions (inbound and outbound) + :class:`types/ ` + :func:`GET ` + List all available :class:`Transaction Types ` + :class:`balance/ ` + :func:`GET ` + Get user's account balance + :class:`virtual/ ` + :func:`GET ` + Return the user's last virtual transactions (inbound and outbound) - ========= ================= - Parameter Description - ========= ================= - num Number of entries to return - ========= ================= + ========= ================= + Parameter Description + ========= ================= + num Number of entries to return + ========= ================= - :func:`POST ` - Transact money from the users to another users account. + :func:`POST ` + Transact money from the users to another users account. - ========= ================= - Parameter Description - ========= ================= - amount [required] Amount to transact - recipient [required] User that will get the money - comment [required] Comment, why the money was transacted - ========= ================= + ========= ================= + Parameter Description + ========= ================= + amount [required] Amount to transact + recipient [required] User that will get the money + comment [required] Comment, why the money was transacted + ========= ================= **auth/** :class:`blob/ `