combo/combo/apps/lingo
Frédéric Péters 6b023257a5 trivial: remove space before question mark 2019-05-16 18:17:09 +02:00
..
management general: move cron jobs in app configs (#28000) 2018-11-14 18:54:03 +01:00
migrations lingo: start transaction options (#32967) 2019-05-16 17:53:49 +02:00
static/js tipi: allow alphanumeric values for rolrec field (#18131) 2017-08-24 17:03:06 +02:00
templates/lingo trivial: remove space before question mark 2019-05-16 18:17:09 +02:00
README lingo: import README 2015-12-30 17:49:31 +01:00
__init__.py general: move cron jobs in app configs (#28000) 2018-11-14 18:54:03 +01:00
admin.py lingo: add simple model for regies 2015-12-30 17:49:29 +01:00
forms.py lingo: start transaction options (#32967) 2019-05-16 17:53:49 +02:00
manager_views.py lingo: start transaction options (#32967) 2019-05-16 17:53:49 +02:00
models.py lingo: start transaction options (#32967) 2019-05-16 17:53:49 +02:00
urls.py lingo: make manager views compliant with PaymentBackend (#32441) 2019-05-15 18:16:08 +02:00
views.py lingo: start transaction options (#32967) 2019-05-16 17:53:49 +02:00

README

Lingo
=====

Lingo is an extension module for the combo content management system, adding
basket and payment features.

License
-------

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
details.

You should have received a copy of the GNU Affero General Public License along
with this program.  If not, see <http://www.gnu.org/licenses/>.

API
---

Items amount can be added to basket through API by posting to
*/api/lingo/add-basket-item* endpoint a json payload containing *amount* and/or
*"extra": {"amount": ...}* attribute or passing *amount* in the query string

For example:

    {"display_name": "<item display name>",
     "url": "http://<item url>",
     "amount": "42.42",
     "extra": {"amount": "10.42", ...},
     ...
     }

or
    /api/lingo/add-basket-item?amount=10

The "amount" attribute should be float or decimal or a list of
floats/decimals. For example:

    {"amount": [14.12], "extra": {"amount": ["10.42", "5", "10"], ... }, ...}