Skip to content

Commit

Permalink
new voucher usage
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Apr 4, 2016
1 parent e1213b5 commit 9c9025a
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/budy/controllers/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
from . import product
from . import root
from . import subscription
from . import voucher

from .account import AccountApiController
from .address import AddressApiController
Expand All @@ -63,3 +64,4 @@
from .product import ProductApiController
from .root import RootApiController
from .subscription import SubscriptionApiController
from .voucher import VoucherApiController
53 changes: 53 additions & 0 deletions src/budy/controllers/api/voucher.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-

# Hive Budy
# Copyright (c) 2008-2016 Hive Solutions Lda.
#
# This file is part of Hive Budy.
#
# Hive Budy is free software: you can redistribute it and/or modify
# it under the terms of the Apache License as published by the Apache
# Foundation, either version 2.0 of the License, or (at your option) any
# later version.
#
# Hive Budy 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
# Apache License for more details.
#
# You should have received a copy of the Apache License along with
# Hive Budy. If not, see <http://www.apache.org/licenses/>.

__author__ = "João Magalhães <joamag@hive.pt>"
""" The author(s) of the module """

__version__ = "1.0.0"
""" The version of the module """

__revision__ = "$LastChangedRevision$"
""" The revision number of the module """

__date__ = "$LastChangedDate$"
""" The last change date of the module """

__copyright__ = "Copyright (c) 2008-2016 Hive Solutions Lda."
""" The copyright for the module """

__license__ = "Apache License, Version 2.0"
""" The license for the module """

import appier

import budy

from . import root

class VoucherApiController(root.RootApiController):

@appier.route("/api/vouchers", "GET", json = True)
@appier.ensure(token = "admin")
def list(self):
object = appier.get_object(alias = True, find = True, sort = [("id", -1)])
vouchers = budy.Voucher.find(map = True, **object)
return vouchers

0 comments on commit 9c9025a

Please sign in to comment.