diff options
Diffstat (limited to 'indoteknik_api/controllers/api_v1')
| -rw-r--r-- | indoteknik_api/controllers/api_v1/manufacture.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_api/controllers/api_v1/manufacture.py b/indoteknik_api/controllers/api_v1/manufacture.py index 5b9d57b2..544113f2 100644 --- a/indoteknik_api/controllers/api_v1/manufacture.py +++ b/indoteknik_api/controllers/api_v1/manufacture.py @@ -32,7 +32,7 @@ class Manufacture(controller.Controller): return self.response(data) @http.route(prefix + 'manufacture/<id>', auth='public', methods=['GET', 'OPTIONS']) - def get_manufacture(self, **kw): + def get_manufacture_by_id(self, **kw): if not self.authenticate(): return self.response(code=401, description='Unauthorized') |
